/* Basic styles */
:root {
  scroll-behavior: unset;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*,
::before,
::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
html {
  overflow: hidden;
  overflow-y: auto;
}
body {
  font-size: 16px;
  line-height: 24px;
  font-family: "Outfit", sans-serif;
  color: #2b2b2b;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
html,
button,
input,
select,
textarea {
  font-family: "Outfit", sans-serif;
}
i {
  display: flex;
}
i:before {
  content: "";
  display: inline-block;
  background-size: cover;
  mask-size: cover;
  -webkit-mask-size: cover;
  background-repeat: no-repeat;
}
.content-inner ul,
.blog-detail-content ul {
  margin-bottom: 16px;
}
.content-inner ul li,
.blog-detail-content ul li {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 10px;
  padding-left: 18px;
  color: #858584;
  position: relative;
}
.content-inner ul li::before,
.blog-detail-content ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  background-color: #fbb516;
  border-radius: 50%;
}
.blog-detail-content ul li::before {
  top: 8px;
}
.content-inner ul li:last-child,
.blog-detail-content ul li:last-child {
  margin-bottom: 0;
}
.blog-detail-date {
  color: #858584;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  display: block;
  margin-bottom: 8px;
}
.blog-detail-img {
  margin-bottom: 32px;
}
.blog-detail-img img {
  width: 100%;
  height: 100%;
}
/* Form Style */
input,
select,
textarea {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  background: #fff;
  border: 1px solid #dddddd;
  color: #242424;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
}
input:focus,
textarea:focus,
select:focus,
.form-select:focus {
  border-color: #fbb516;
  outline: none;
  box-shadow: none;
}
input,
textarea,
select {
  padding: 12px 16px;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #858584;
  opacity: 1;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background: url(../images/icon_chevron-black.svg) !important;
  background-repeat: no-repeat !important;
  background-position: right 0 center !important;
  /* background-size: 9px !important; */
  cursor: pointer;
  border: none;
}
.form-select {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  border-color: #dddddd;
  border-radius: 0;
  color: #242424;
  background-image: url(../images/icon_chevron.svg) !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 20px !important;
}
label {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #242424;
  margin: 0 0 10px;
}
.check-group {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.check-group label {
  margin: 0;
  padding: 0 0 0 8px;
  cursor: pointer;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #858584;
}
.form-check-input:focus {
  box-shadow: none;
}
.form-check-input[type="checkbox"]:checked ~ .form-check-label {
  color: #242424;
}
.form-check-input[type="checkbox"] {
  width: 15px;
  height: 15px;
  border: 1px solid #f1f1f1;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: none;
  position: relative;
  border-radius: 0;
}
.form-check-input[type="checkbox"]:checked {
  background-color: #fbb516;
  border: 1px solid #fbb516;
  background-image: none;
  transition: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.form-check-input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  background: url(../images/icon_check.svg) no-repeat center;
  width: 11px;
  height: 8px;
}
.form-check-input[type="checkbox"]:disabled {
  background-color: rgba(167, 165, 166, 0.7);
  border: 1px solid rgba(167, 165, 166, 0.7);
  opacity: 1;
}
.form-check-input:disabled ~ .form-check-label,
.form-check-input[disabled] ~ .form-check-label {
  opacity: 1;
}
/* Radiobutton */
.radio-group {
  display: inline-flex;
  align-items: center;
}
.radio-group input[type="radio"] {
  opacity: 0;
  display: none;
}
.radio-group input[type="radio"] + label {
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  margin: 0;
}
.radio-group label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #242424;
}
.radio-group input[type="radio"] + label::before {
  border: 2px solid #96999c;
  border-radius: 10px;
  content: "";
  height: 20px;
  width: 20px;
  left: 0;
  position: absolute;
  top: 1px;
}
.radio-group input[type="radio"] + label::after {
  border-radius: 10px;
  content: "";
  height: 10px;
  width: 10px;
  left: 5px;
  position: absolute;
  top: 6px;
}
.radio-group input[type="radio"]:checked + label::before {
  border: 2px solid #fbb516;
}
.radio-group input[type="radio"]:checked + label::after {
  background: #fbb516;
}
.was-validated input {
  border: 1px solid #ffdedf;
}
.was-validated .form-check-input:valid ~ .form-check-label {
  color: #ed1c24;
}
.show-hide-password .hide-password {
  display: none;
}
.show-hide-password .show-password {
  display: block;
}
::-webkit-search-cancel-button {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: url(../images/icon_search_cancel.svg) no-repeat center;
  background-size: 12px;
  padding-left: 12px;
  /* color: #302929; */
}
[type="search"] {
  outline-offset: 0;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
/* From Style End */
iframe {
  border: 0;
  width: 100%;
  border-radius: 0;
}
a {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  display: inline-block;
  color: #2b2b2b;
  text-decoration: none;
  transition: 0.4s;
}
a:focus {
  outline: none;
}
a:active,
a:hover {
  color: #fbb516;
  outline: 0;
  transition: 0.4s;
}
a:hover,
a:focus {
  opacity: 1;
}
svg:not(:root) {
  overflow: hidden;
}
ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
address,
p,
pre,
blockquote,
dl,
dd,
menu,
ol,
ul,
table,
caption,
hr {
  margin: 0 0 16px 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #242424;
}
h1,
.heading-one {
  font-size: 44px;
  line-height: 58px;
  font-weight: 600;
}
h2,
.heading-tow {
  font-size: 32px;
  line-height: 58px;
  font-weight: 600;
}
h3,
.heading-three {
  font-size: 28px;
  line-height: 42px;
  font-weight: 500;
}
h4,
.heading-four {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}
h5,
.heading-five {
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
}
h6,
.heading-six {
  font-size: 16px;
  font-weight: 500;
  /* line-height: 12px; */
  /* margin-bottom: 16px; */
}
.title-one {
  color: #242424;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}
.title-two {
  color: #242424;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.text-sm {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
img {
  max-width: 100%;
  display: block;
}
p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #858584;
}
p:last-child {
  margin-bottom: 0;
}
/* End Typography */

/* Button */
.solid-button {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding: 12px 30px;
  cursor: pointer;
  background: #fbb516;
  color: #242424;
  transition: all 0.4s;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  border: none;
}
.solid-button:hover {
  transition: all 0.4s;
  color: #fbb516;
  background: #242424;
}
.icon-border-btn {
  border: 1px solid #242424;
  background: #fff;
  padding: 11px 29px;
  gap: 8px;
}
.icon-border-btn:hover {
  border-color: #242424;
}
.icon-border-btn i::before {
  transition: all 0.4s;
}
.icon-border-btn:hover i::before {
  background: #fbb516;
  transition: all 0.4s;
}
.icon-link-btn {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  color: #242424;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s;
}
.icon-link-btn:hover {
  /* color: #fbb516;
  transition: all 0.4s; */
}
.icon-link-btn i::before {
  transition: all 0.4s;
}
.icon-link-btn:hover i::before {
  background: #fbb516;
  transition: all 0.4s;
}
.link-btn {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  color: #fbb516;
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  transition: all 0.4s;
}
.link-btn:hover {
  color: #242424;
  transition: all 0.4s;
}
/* End Button */

/* Modal Common Styling */
.modal-content {
  border-radius: 0;
  border: 0;
}
.modal-dialog {
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.modal-body {
  padding: 32px;
}
.modal-header {
  padding: 0;
  border: none;
}
.modal-header .btn-close {
  position: absolute;
  top: 34px;
  right: 32px;
  padding: 0;
  margin: 0;
  opacity: 1;
  box-shadow: none !important;
  background: none;
  z-index: 9;
  width: 32px;
  height: 32px;
}
.modal-header .btn-close svg path {
  transition: 0.3s;
}
.modal-header .btn-close:hover svg path {
  stroke: #fbb516;
  transition: 0.3s;
}
.review-modal .modal-dialog,
.logout-modal .modal-dialog {
  max-width: 526px;
}
.review-modal .modal-body h4 {
  line-height: 36px;
  margin-bottom: 32px;
}
.review-modal .modal-body .review-wrapper {
  max-height: 472px;
  overflow-y: auto;
}
.logout-modal .modal-body .solid-button {
  color: #fff;
}
.logout-modal .modal-body .modal-icon {
  margin: 0 0 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Modal Common Styling End */

/* Counter */
.counter__increment,
.counter__decrement {
  transition: all 0.4s ease-in-out;
}
.counter {
  position: relative;
  width: 194px;
  height: 48px;
  border: 1px solid #242424;
  text-align: center;
  overflow: hidden;
  display: block;
  z-index: 1;
}
.counter__input {
  border: none;
  height: 48px;
  margin: 0 auto;
  text-align: center;
  color: #242424;
  font-size: 16px;
  line-height: normal;
  font-weight: 400;
  background-color: transparent;
  padding: 12px 30px;
}
.counter__increment,
.counter__decrement {
  position: absolute;
  top: 12px;
  height: 24px;
  width: 24px;
  color: #242424;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.counter__increment {
  right: 30px;
}
.counter__decrement {
  left: 30px;
}
.counter__increment:hover,
.counter__decrement:hover {
  color: #fbb516;
}
.counter__increment i,
.counter__decrement i {
  font-size: 16px;
}
/* Counter End */

/* Breadcrumb Style */
.bread-crumb-block {
  width: 100%;
}
.bread-crumb-block .breadcrumb {
  padding: 18px 0 20px;
  margin: 0;
  align-items: center;
}
.breadcrumb-item,
.breadcrumb-item a {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}
.breadcrumb-item a {
  color: #858584;
}
.breadcrumb-item a:hover {
  color: #fbb516;
}
.breadcrumb-item.active {
  color: #fbb516;
  padding-left: 12px;
}
.breadcrumb-item + .breadcrumb-item::before {
  padding-right: 12px;
  color: #858584;
}
/* Breadcrumb Style End */

/* Custom Scroll style */
.sub-filter-list::-webkit-scrollbar,
.review-modal .modal-body .review-wrapper::-webkit-scrollbar {
  width: 4px;
  background: #dddddd;
}
.sub-filter-list::-webkit-scrollbar-thumb,
.review-modal .modal-body .review-wrapper::-webkit-scrollbar-thumb {
  background: #fbb516;
}
/* Custom Scroll style End */

.site-content {
  /* padding-top: 222px; */
  transition: 0.4s;
}
.sticky .site-content {
  /* padding-top: 142px; */
  transition: 0.4s;
}
.container {
  margin: 0 auto;
  max-width: 1280px;
}

/* Header */
.site-header {
  z-index: 100;
  background: #fff;
  position: relative;
  /* transition: 0.4s; */
}
.site-header.smaller {
  /* 26 sep */
  /* position: fixed; */
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0px 15px 20px rgb(38 38 38 / 6%);
  /* transition: all 0.1s linear 0s; */
  /* transition: 0.4s; */
}
/* .site-header.smaller .top-header,
.site-header.smaller .bottom-header {
  display: none;
  transition: 0.4s;
} */
.top-header {
  background-color: #242424;
  padding: 9px 0;
  text-align: center;
  transition: 0.4s;
}
.top-header p {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #fff;
}
.middle-header {
  background-color: #fbb516;
  padding: 9px 0;
  transition: 0.4s;
}
.mobile_only {
  display: none;
}
.middle-header-link-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 30px;
}
.middle-header-link-nav li {
  margin-right: 18px;
  padding-right: 18px;
  position: relative;
}
.middle-header-link-nav li:after {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  width: 1px;
  height: 16px;
  background-color: #242424;
}
.middle-header-link-nav li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.middle-header-link-nav li:last-child:after {
  display: none;
}
.middle-header-link-nav li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #2b2b2b;
  transition: 0.4s;
}
.middle-header-link-nav li a:hover {
  color: #fff;
  transition: 0.4s;
}
.middle-header-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header-search-form {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  max-width: 595px;
  margin: 0;
}
.header-search-form input[type="search"] {
  /* border: none; */
  border: 2px solid black;
  border-style: inset;
  padding: 12px 36px 12px 16px;
}
.header-search-form input[type="search"]::placeholder {
  opacity: 0.7;
  color: #858584;
}
.header-search-form input[type="search"]:focus-visible {
  /* border: none; */
  border: 2px solid black;
  border-style: inset;
  outline: 0;
}
.search-button {
  position: absolute;
  top: 15px;
  right: 16px;
  width: 16px;
  height: 16px;
  background: url(../images/icon_search.svg) no-repeat right;
  background-size: cover;
  border: none;
  padding: 0;
}
.middle-header-icon-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
}
.middle-header-icon-nav li {
  flex-shrink: 0;
  margin-right: 20px;
}
.middle-header-icon-nav li:last-child {
  margin-right: 0;
}
.header-cart {
  position: relative;
}
.header-cart span {
  position: absolute;
  top: 0;
  right: 1px;
  color: #212121;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: bold;
  line-height: normal;
  letter-spacing: 0.55px;
  pointer-events: none;
}

.header-cart span.count-number.notification-no {
  top: -10px;
  right: -10px;
  border: 0;
}

/* .header-cart span {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #242424;
  color: #fbb516;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  box-shadow: -2.2857141494750977px 2.2857141494750977px 5px 0px
    rgba(0, 0, 0, 0.19);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.55px;
} */
.site_language .form-select {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #2b2b2b;
  border: none;
  border-radius: 0;
  padding: 0 16px 0 0;
  background-color: transparent;
  background-position: right 0 center !important;
  background-image: url(../images/icon_chevron_black.svg) !important;
  background-size: 10px !important;
}
.site_language .form-select:focus {
  border: none;
  outline: 0;
  box-shadow: none;
}
.bottom-header {
  background-color: #242424;
  padding: 10px 0;
  transition: 0.4s;
}
.bottom-header .container {
  position: relative;
}
.nav-menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
}
.nav-menu > .nav-item {
  margin-right: 30px;
  /* position: relative; */
}
.nav-menu > .nav-item:last-child {
  margin-right: 0;
}
.nav-menu > .nav-item > a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  position: relative;
  transition: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
.nav-menu > .nav-item:hover > a {
  color: #fbb516;
  transition: 0.4s;
}
.nav-menu > .nav-item.has-children > a:after {
  content: "";
  -webkit-mask-image: url(../images/icon_downarrow.svg);
  mask-image: url(../images/icon_downarrow.svg);
  -webkit-mask-size: cover;
  background-repeat: no-repeat;
  width: 9px;
  height: 6px;
  background: #fff;
  transition: 0.4s;
  display: block;
  margin: 0 0 0 8px;
}
.nav-menu > .nav-item:hover > a::after {
  background: #fbb516;
  transition: 0.4s;
}
.nav-menu > .nav-item > .sub-menu {
  position: absolute;
  top: 140%;
  /* left: 0; */
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 10px);
  transition: 0.4s;
  display: block;
  background: #fff;
  box-shadow: 0 0 20px rgb(0 0 0 / 10%);
  z-index: 4;
  overflow: hidden;
  /* width: 100%; */
  width: 20%;
  display: flex;
  justify-content: space-between;
  padding: 0;
}
.nav-menu > .nav-item > .sub-menu > ul {
  width: 100%;
}
.nav-menu > .nav-item > .sub-menu > ul > li {
  width: 100%;
}
/* .nav-menu > .nav-item > .sub-menu > ul > li:first-child {
  border-bottom: 1px solid #DDD;
  padding-bottom: 16px;
  margin-bottom: 8px;
} */
.nav-menu > .nav-item > .sub-menu > ul > li > a {
  display: block;
  padding: 10px 20px;
  position: relative;
  transition: 0.4s;
  left: 0;
  font-size: 14px;
  line-height: 20px;
  color: #2b2b2b;
  border-bottom: 1px solid #ddd;
}
.nav-menu > .nav-item > .sub-menu > ul > li:last-child > a {
  border-bottom: none;
}
.nav-menu > .nav-item:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
  transition: 0.4s;
}
.nav-menu > .nav-item > .sub-menu > ul > li > a:hover {
  color: #fbb516;
}
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
.menu li {
  list-style: none;
}
.menu li {
  margin-right: 26px;
  flex-shrink: 0;
}
.menu li:last-child {
  margin-right: 0;
}
.menu li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #262626;
  text-transform: inherit;
  transition: 0.4s;
}
.menu li a:hover,
.menu li a:focus,
.menu li a.active {
  color: #fbb516;
  transition: 0.4s;
}
.mobile-menu {
  display: none;
}
body.modal-open {
  padding: 0 !important;
}
.btn-close:focus {
  outline: 0;
  box-shadow: none;
  opacity: 1;
}
.form-group {
  margin-bottom: 24px;
}
.wpcf7-not-valid-tip {
  font-size: 12px;
}
.wpcf7 form.sent .wpcf7-response-output {
  margin: 0;
}
.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: #23282d;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.scrollidisable {
  position: fixed;
  width: 100%;
  padding-right: 0 !important;
}
#appBody {
  padding-right: 0 !important;
}
/* End Header */

/* Banner */
.banner,
.banner-wrapper {
  position: relative;
}
.banner-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.banner-content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}
.banner-text {
  max-width: 574px;
}
.banner-text h1 {
  margin-bottom: 14px;
}
.banner-content p {
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  color: #2b2b2b;
  margin-bottom: 30px;
  max-width: 410px;
}
.banner .banner-button-prev,
.banner .banner-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.banner .banner-button-prev::after,
.banner .banner-button-next::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.banner .swiper-button-disabled {
  cursor: initial;
  opacity: 0.7;
  pointer-events: none;
}
.banner .banner-button-prev {
  left: 78px;
}
.banner .banner-button-next {
  right: 78px;
}
.common-btn-prev:hover,
.common-btn-next:hover {
  border-color: #fbb516;
  transition: 0.4s;
}
.common-btn-prev::after,
.common-btn-next::after {
  content: "";
  margin: auto;
  background: url(../images/icon_chevron_gray_left.svg) no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
  transition: 0.4s;
  display: block;
}
.common-btn-next::after {
  background: url(../images/icon_chevron_gray_right.svg) no-repeat center;
  background-size: contain;
  transition: 0.4s;
}
.common-btn-prev:hover:after {
  background: url(../images/icon_chevron_yellow_left.svg) no-repeat center;
  transition: 0.4s;
}
.common-btn-next:hover:after {
  background: url(../images/icon_chevron_yellow_right.svg) no-repeat center;
  transition: 0.4s;
}
.common-btn-prev:focus-visible:after {
  outline: 0;
}
.common-btn-next:focus-visible:after {
  outline: 0;
}
/* End Banner */

/* Shop By Spirit */
.shop-by-spirit,
.offers,
.best-seller {
  overflow: hidden;
}
.shop-slider-wrapper,
.our-highlights-slider-wrapper,
.offers-slider-wrapper,
.best-seller-wrapper {
  position: relative;
}
.shop-spirit-slider {
  padding-bottom: 33px;
  overflow: unset;
}
.product-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product-image {
  width: 128px;
  height: 128px;
  /*background-color: #f1f1f1;*/
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
/* .product-image img {
  width: 55px;
  height: 85px;
  object-fit: cover;
} */
.product-image img {
  /*width: 65px;*/
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
}
.product-wrapper h5 {
  margin: 0;
  /* display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden; */
}
.common-btn-prev,
.common-btn-next {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 100%;
  transition: all 0.4s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: url(../images/icon_chevron_gray_right.svg) no-repeat center; */
  /* background-size: 24px;
  background-repeat: no-repeat;
  background-position: center; */
}
/* .common-btn-prev {
  background: url(../images/icon_chevron_gray_left.svg) no-repeat center;
  background-size: 24px;
} */
/* .common-btn-prev:hover,
.common-btn-next:hover {
  border-color: #FBB516;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
} */
/* .common-btn-prev::after,
.common-btn-next::after {
  content: '';
  margin: auto;
  background: url(../images/icon_chevron_gray_left.svg) no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  display: block;
} */
/* .common-btn-next::after {
  background: url(../images/icon_chevron_gray_right.svg) no-repeat center;
  background-size: contain;
} */
/* .common-btn-prev:hover:after {
  background-image: url(../images/icon_chevron_yellow_left.svg);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.common-btn-next:hover:after {
  background-image: url(../images/icon_chevron_yellow_right.svg);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
} */
/* .common-btn-prev:hover {
  background-image: url(../images/icon_chevron_yellow_left.svg);
  background-size: 24px;
} */
/* .common-btn-next:hover {
  background-image: url(../images/icon_chevron_yellow_right.svg);
  background-size: 24px;
} */
.nav-btn-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.common-scroll {
  position: relative;
  touch-action: none;
  -ms-touch-action: none;
  background: #f1f1f1;
  height: 2px !important;
  border-radius: 0;
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 8%)) !important;
  bottom: 18px !important;
}
.swiper-horizontal > .common-scroll,
.common-scroll.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 0%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.common-scroll .swiper-scrollbar-drag {
  height: 100%;
  /* width: 110px !important; */
  position: relative;
  background: #fbb516;
  border-radius: 0;
  left: 0;
  top: 0;
}
/* End Shop By Spirit */

/* Free Shipping */
.free-shipping {
  /* background-image: url(../images/free-shipping-bg-img.png); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.free-shipping h2 {
  font-weight: 400;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: #000;
}
.free-shipping span {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  display: block;
  color: #242424;
  margin-bottom: 30px;
}
/* End Free Shipping */

/* Our Highlights */
.our-highlights-box {
  position: relative;
}
.our-highlights-image {
  overflow: hidden;
}
.our-highlights-image img {
  width: 628px;
  height: 427px;
  object-fit: cover;
  transition: 0.4s;
}
.our-highlights-box:hover .our-highlights-image img {
  transform: scale(1.2);
  transition: 0.4s;
}
.our-highlights-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 283px;
}
.our-highlights-content h3 {
  color: #2b2b2b;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 30px;
}
.our-highlights-slider .swiper-slide:nth-child(odd) .our-highlights-content {
  right: 40px;
  text-align: right;
}
.our-highlights-slider .swiper-slide:nth-child(even) .our-highlights-content {
  left: 40px;
  text-align: left;
}
/* End Our Highlights */

/* Offer */
.offers {
  background-color: #242424;
}
.offers-slider {
  padding-bottom: 30px;
  overflow: unset;
}
.offers-slider .swiper-slide {
  height: 100%;
}
.offers-box {
  border: 1px solid #ddd;
  background: #fff;
  padding: 19px;
  height: 104%;
}
.offers-image {
  /* margin-bottom: 20px; */
  height: 350px;
  overflow: hidden;
}
.offers-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.offers-content {
  position: relative;
}
.offers-content h6 {
  color: #242424;
  margin-bottom: 0;
  /*max-width: 192px;*/
  transition: 0.4s;
}
.price-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.price-wrapper span {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  display: inline-block;
}
.price-wrapper .sell-price {
  color: #242424;
}
.price-wrapper .original-price {
  color: #858584;
  text-decoration: line-through;
}
.offers-box:hover h6 {
  color: #fbb516;
  transition: 0.4s;
}
.offers-box:hover .offers-image img {
  transform: scale(1.2);
  transition: 0.4s;
}
.offers .common-scroll {
  background: #3b3b3b;
}
/* End Offer */

/* Best Seller */
.best-seller-slider {
  overflow: unset;
}
.best-seller-slider .swiper-slide {
  height: 100%;
}
.bs-box {
  /* border: 1px solid #ddd;
  background: #fff;
  padding: 19px;
  position: relative;
  width: 100%;
  height: 100%; */
  border: 1px solid #ddd;
  background: #fff;
  padding: 19px;
  height: 104%;
}
.bs-image {
  /* margin-bottom: 20px; */
  height: 350px;
  overflow: hidden;
}
.bs-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.4s;
}
.bs-slider .swiper-slide {
  height: 100%;
}
.bs-box .bs-content {
  position: relative;
}
.bs-content .price-wrapper .original-price {
  font-weight: 400;
}
.bs-content .product-rating,
.offers-content .product-rating {
  border: 0;
  padding: 0;
}
.add-bucket {
  position: absolute;
  bottom: 0;
  right: 0;
}
.add-bucket i::before {
  transition: 0.4s;
}
.add-bucket:hover i::before {
  background: #fbb516;
  transition: 0.4s;
}
.bs-content h6 {
  color: #242424;
  margin-bottom: 0;
  /*max-width: 192px;*/
  transition: 0.4s;
}
/* .bs-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background: rgba(241, 241, 241, 0.4);
  z-index: 0;
  transition: 0.4s;
}
.bs-box:hover::after {
  transition: 0.4s;
  opacity: 1;
  visibility: visible;
} */
.bs-box:hover .bs-content h6 {
  color: #fbb516;
  transition: 0.4s;
}
.bs-box:hover .bs-image img {
  transform: scale(1.05);
  transition: 0.4s;
}
.fav-button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 23px;
  z-index: 2;
}
input[type="checkbox"].fav-icon {
  opacity: 0;
  transform: translate3D(-50%, -50%, 0);
  left: 50%;
  top: 50%;
  position: absolute;
  z-index: -1;
}
.fav-button:before,
.fav-button:after {
  content: "";
  cursor: pointer;
  background-image: url(../images/icon_favorite.svg);
  background-size: cover;
  height: 23px;
  width: 24px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3D(-50%, -50%, 0);
  transition: all 0.4s;
}
.fav-button:after {
  opacity: 0;
  background-image: url(../images/icon_favorite_fill.svg);
}
input[type="checkbox"]:checked ~ .fav-button:before {
  background-image: url(../images/icon_favorite_fill.svg);
}

/* 2 may 2025 */
.favs-button {
  position: absolute;
  top: -348px;
  right: -2px;
  width: 24px;
  height: 23px;
  z-index: 2;
}
input[type="checkbox"].favs-icon {
  opacity: 0;
  transform: translate3D(-50%, -50%, 0);
  left: 50%;
  top: 50%;
  position: absolute;
  z-index: -1;
}
.favs-button:before,
.favs-button:after {
  content: "";
  cursor: pointer;
  background-image: url(../images/icon_favorite.svg);
  background-size: cover;
  height: 23px;
  width: 24px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3D(-50%, -50%, 0);
  transition: all 0.4s;
}
.favs-button:after {
  opacity: 0;
  background-image: url(../images/icon_favorite_fill.svg);
}
input[type="checkbox"]:checked ~ .favs-button:before {
  background-image: url(../images/icon_favorite_fill.svg);
}

@media (min-width: 991px) and (max-width: 1199px) {
  .favs-button {
      top: -310px !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .favs-button {
      top: -240px !important;
  }
}

@media (min-width: 581px) and (max-width: 767px) {
  .favs-button {
      top: -245px;
  }
}

@media (min-width: 477px) and (max-width: 581px) {
  .favs-button {
      top: -235px;
  }
}

@media (max-width: 476px) {
  .favs-button {
      top: -266px;
  }
}



/* .bs-content .add-to-cart {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  width: auto;
  max-width: 217px;
  margin: 0 auto;
  z-index: 1;
  gap: 8px;
}
.bs-box:hover .bs-content .add-to-cart {
  transition: 0.4s;
  opacity: 1;
  visibility: visible;
}
.bs-content .add-to-cart i {
  transition: 0.4s;
}
.bs-content .add-to-cart:hover i::before {
  background: #FBB516;
  transition: 0.4s;
} */
/* End Best Seller */

/* Latest Blog */
.blog-box {
  height: 100%;
  background-color: #f1f1f1;
}
.blog-image {
  overflow: hidden;
}
.blog-image img {
  object-fit: cover;
  transition: 0.4s;
}
.blog-box:hover .blog-image img {
  transform: scale(1.2);
  transition: 0.4s;
}
.blog-content {
  padding: 16px 16px 18px 16px;
}
.blog-content h5 {
  margin-bottom: 6px;
}
.blog-content h5 a {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-content span {
  color: #858584;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  display: block;
  margin-bottom: 8px;
}
.text-link {
  color: #2b2b2b;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.4s;
}
.text-link svg {
  width: 10px;
  height: 10px;
  transition: 0.4s;
}
.text-link:hover path {
  fill: #fbb516;
  transition: 0.4s;
}
.text-link:hover svg {
  transform: translateX(2px);
}
/* End Latest Blog */

/* Service */
.service {
  background: url(../images/service-bg-img.jpg) no-repeat center;
  background-size: cover;
  padding-top: 124px;
}
.white-box-wrapper {
  border: 1px solid #f1f1f1;
  border-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.white-box {
  background: #fff;
  border-right: 1px solid #ddd;
  /* width: 218px;
  height: 226px; */
  width: 300px;
  height: 300px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 40px;
}
.white-box:last-child {
  border-right: 0;
}
.white-box img {
  margin-bottom: 16px;
}
.white-box h5 {
  font-weight: 500;
  line-height: 27px;
  color: #2b2b2b;
}

/* End Service */

/* Newsletter */
.newsletter {
  padding: 27px 0 25px;
  background-color: #f1f1f1;
}
.newsletter-main {
	display: flex;
	align-items: center;
	justify-content: center;
}
.newsletter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 881px;
  width: 100%;
}
.newsletter-wrapper h3 {
  margin-bottom: 0;
  color: #2b2b2b;
}
.newsletter-wrapper form {
  max-width: 503px;
  width: 100%;
}
.subscription-form {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.subscription-form #newslatter-error {
  position: absolute;
  bottom: -24px;
  left: 0;
}
.subscription-form input {
  flex-shrink: 0;
}
.subscription-form input[type="email"] {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  border: 1px solid #858584;
  height: 48px;
  max-width: 360px;
}
.subscription-form input[type="email"]:focus-visible {
  outline: 0;
}
.subscription-form input[type="email"]::placeholder {
  opacity: 0.5;
  color: #858584;
}
.subscription-form .solid-button {
  width: auto;
}
/* End Newsletter */

/* Footer */
.footer {
  padding-top: 23px;
  background-color: #fbb516;
}
.links-wrapper {
  position: relative;
  padding-top: 37px;
  padding-left: 20px;
  padding-right: 20px;
}
.links-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(59 59 59 / 20%);
  width: 1px;
  height: 420px;
}
.footer-link {
  min-height: 144px;
  margin-bottom: 30px;
}
.footer-col:last-child .footer-link {
  min-height: auto;
}
.footer-link h6 {
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
}
.links {
  margin-bottom: 0;
}
.links li {
  margin-bottom: 8px;
}
.links li a {
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  color: #242424;
}
.links li:last-child {
  margin-bottom: 0;
}
.links li a:hover {
  color: #fff;
  transition: 0.4s;
}
/* .footer-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */
.copyright {
  padding: 9px 0 14px;
  margin-top: 24px;
  border-top: 1px solid rgb(59 59 59 / 20%);
  text-align: center;
}
.copyright p {
  font-size: 14px;
  line-height: 21px;
  color: #242424;
}
.social-media {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 30px;
  padding: 0;
}
.social-media li {
  margin-right: 24px;
}
.social-media li:last-child {
  margin-right: 0;
}
.social-media li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  position: relative;
  top: 0;
  transition: 0.4s;
}
.social-media li a:hover {
  top: -5px;
  transition: 0.4s;
}
.social-media li a .hoveron {
  display: none;
}
.social-media li a:hover .hoveron {
  display: block;
}
.social-media li a:hover .hoveroff {
  display: none;
}

.c-go-top {
  position: fixed;
  right: 12px;
  bottom: 90px;
  display: none;
  background-color: #242424;
  padding: 10px;
  text-decoration: none;
  z-index: 999;
  border: 1px solid #242424;
  transition: all 0.4s;
  width: 42px;
  height: 42px;
  text-align: center;
}
.c-go-top::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 45px;
  height: 45px;
  background: #242424;
  animation: pulse-border 1000ms ease-out infinite;
}
.c-go-top span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: #fbb516;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
/* End Footer */

/* Product Listing */
.title-banner {
  padding: 96px 0;
  position: relative;
  z-index: 0;
  background-position: center;
  text-align: center;
}
.title-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(36, 36, 36, 0.4);
  z-index: -1;
}
.title-banner h1 {
  color: #ffffff;
}
.product-listing {
  padding-bottom: 120px;
}
.short-by {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}
.short-by-block {
  display: flex;
  align-items: center;
  gap: 30px;
}
.short-by-block .solid-button svg {
  margin-right: 8px;
}
.short-by-block .solid-button svg path {
  transition: all 0.4s;
}
.short-by-block .solid-button:hover svg path {
  fill: #fbb516;
  transition: all 0.4s;
}
.short-by-block form select {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #242424;
  padding: 0;
  padding-right: 20px;
}
.product-listing-col {
  margin-bottom: 24px;
}
.product-listing-col .bs-box {
  height: 100%;
}
.show-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.show-more #showing {
  margin-left: auto;
}
.no-result-found {
  margin-bottom: 0;
}
/* End Product Listing */

/* Product Listing Filter */
.filteroffcanvas .offcanvas-header {
  padding: 6px 20px;
  justify-content: center;
  position: relative;
  background-color: #f1f1f1;
}
.filteroffcanvas .offcanvas-header h5 {
  font-size: 20px;
  line-height: 30px;
  color: #242424;
}
.filteroffcanvas .offcanvas-header .btn-close {
  position: absolute;
  top: 22px;
  left: 24px;
  padding: 0;
  color: #858584;
}
.filteroffcanvas .offcanvas-body {
  padding: 0;
}
.filter-listing-main {
	padding-bottom: 80px;
}
.filter-listing {
  padding: 0 20px;
  border-bottom: 1px solid #f1f1f1;
}
.filter-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #242424;
  display: block;
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
  padding: 16px 0;
}
.filter-title::after {
  content: "";
  position: absolute;
  top: 19px;
  right: 0;
  background: url(../images/icon_chevron.svg) no-repeat center;
  background-size: 16px;
  width: 16px;
  height: 16px;
  transition: all 0.4s;
}
.filter-title.active::after {
  top: 19px;
  transform: rotate(180deg);
  transition: all 0.3s;
}
.filter-list {
  margin-bottom: 0;
}
.filter-list li {
  padding-bottom: 16px;
}
.filter-list li:last-child {
  padding-bottom: 0;
}
.sub-filter-list {
  margin-bottom: 0;
  margin-top: 16px;
  padding-left: 24px;
  max-height: 82px;
  overflow-y: scroll;
}
.sub-filter-list li {
  padding-bottom: 8px;
  line-height: normal;
}
.sub-filter-list li:last-child {
  padding-bottom: 0;
}
.filter-button {
  padding: 16px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 4;
}
.filter-button-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.filter-button-group .clear-button {
  background: #ffffff;
  color: #fbb516;
}
.filter-button-group .clear-button:hover {
  background: #242424;
  color: #fbb516;
}
/* Range Slider */
/* .price-range {
  padding: 16px 20px;
  border-bottom: 1px solid #F1F1F1;
}
.price-input {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 16px 0 0;
}
.field label {
  font-weight: 400;
  color: #858585;
  margin: 0 0 4px;
}
.field input {
  outline: none;
  -moz-appearance: textfield;
  padding: 8px 30px;
  color: #858584;
  font-weight: 500;
  text-align: center;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.slider {
  height: 6px;
  position: relative;
  background: #ddd;
}
.slider .progress {
  height: 100%;
  left: 0;
  right: 65%;
  position: absolute;
  background: #FBB516;
  border-radius: 0;
}
.range-input {
  position: relative;
}
.range-input input {
  position: absolute;
  width: 100%;
  height: 6px;
  top: -6px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0;
  border: none;
}
.range-input input.range-min {
	display: none;
}
input[type="range"]::-webkit-slider-thumb {
  height: 8px;
  width: 8px;
  border: 2px solid #FFF;
  border-radius: 50%;
  background: #FBB516;
  pointer-events: auto;
  -webkit-appearance: none;
}
input[type="range"]::-moz-range-thumb {
  height: 8px;
  width: 8px;
  border: 2px solid #FFF;
  border-radius: 50%;
  background: #FBB516;
  pointer-events: auto;
  -moz-appearance: none;
} */

/* .price-range {
  padding: 16px 20px;
  border-bottom: 1px solid #F1F1F1;
}

.range-slider {
  text-align: center;
  position: relative;
}
.range-slider .rangeValues, .range-slider .rangeValues1 {
  display: block;
}

input[type=range] {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid white;
  position: absolute;
  left: 0;
  padding: 0;
}

input[type=range]::-webkit-slider-runnable-track {
  height: 5px;
  background: #dfdfdf;
  border: none;
  border-radius: 3px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #21c1ff;
  margin-top: -4px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #000;
}

input[type=range]::-moz-range-track {
  height: 5px;
  background: #ddd;
  border: none;
  border-radius: 3px;
}

input[type=range]::-moz-range-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #21c1ff;
} */

.wrapper {
  position: relative;
  padding: 16px 20px 16px 20px;
  border-bottom: 1px solid #f1f1f1;
}
.container-range {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 12px;
  margin-bottom: 9px;
}
.price-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.price-title .link-button {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  color: #fbb516;
}
input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  outline: none;
  position: absolute;
  margin: 0;
  top: 0;
  bottom: 0;
  background-color: transparent;
  pointer-events: none;
  padding: 0;
  border: 0;
  margin-top: -6px;
}
#slider-1 {
  z-index: 1;
}
#slider-2 {
  z-index: 2;
}
.slider-track {
  width: 100%;
  height: 6px;
  /* position: absolute; */
  margin: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  margin-top: 12px;
  margin-bottom: 9px;
}
input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  height: 6px;
}
input[type="range"]::-moz-range-track {
  -moz-appearance: none;
  height: 6px;
}
input[type="range"]::-ms-track {
  appearance: none;
  height: 6px;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 23px;
  width: 23px;
  background-color: #ffffff;
  cursor: pointer;
  margin-top: -6px;
  pointer-events: auto;
  border-radius: 50%;
  border: 1px solid #fbb516;
}
input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 23px;
  width: 23px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #ffffff;
  pointer-events: auto;
  border: 1px solid #fbb516;
}
input[type="range"]::-ms-thumb {
  appearance: none;
  height: 23px;
  width: 23px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #ffffff;
  pointer-events: auto;
  border: 1px solid #fbb516;
}
input[type="range"]:active::-webkit-slider-thumb {
  background-color: #ffffff;
  border: 1px solid #fbb516;
}
.values {
  position: relative;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #242424;
}
/* End Range Slider */
/* End Product Listing Filter */

/* Trade */
/* Product Detail */
.product-details-left {
  position: sticky;
  top: 162px;
}
 .product-details .xzoom-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
}
.product-details .dtc-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 400px;
  border: 1px solid #FFDEDF;
  border-radius: 16px;
}
.product-details .dtc-slider::before{
  content: '';
  position: absolute;
  background: url('../images/icon-grey-zoom.svg') no-repeat center;
  background-size: contain;
  width: 30px;
  height: 30px;
  right: 16px;
  bottom: 16px;
}
.product-details .dtc-slider img {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: 0.3s all;
} 
.product-details .xzoom {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
  box-shadow: none;
  margin: 0;
}

.product-details-slider .swiper-slide {
  height: 100px;
}
.product-details-slider .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.product-details .xzoom-gallery {
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid #ffdedf;
  border-radius: 16px;
}
.product-details .xzoom-gallery.xactive {
  box-shadow: none;
  border: 1px solid #dcd7da;
}
.product-details-thumbnail {
  display: block;
  width: 100%;
  margin: 24px 0 0;
  position: relative;
}
.product-details .swiper-button-next,
.product-details .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 30px;
  height: 30px;
  background: #fff;
  opacity: 1;
  transition: all 0.4s;
}
.product-details .swiper-button-prev {
  left: -16px;
}
.product-details .swiper-button-next {
  right: -16px;
}
.product-details .swiper-button-next:hover,
.product-details .swiper-button-prev:hover {
  background: #dcd7da;
  border-color: #dcd7da;
  transition: all 0.4s;
}
.product-details .swiper-button-next:hover::after,
.product-details .swiper-button-prev:hover::after {
  background-color: #fff;
}
.product-details .common-btn-next,
.product-details .common-btn-prev,
.product-detail-next-mobile .common-btn-next,
.product-detail-prev-mobile .common-btn-prev {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.product-details .common-btn-prev::after,
.product-detail-prev-mobile .common-btn-prev::after {
  mask-image: url(../images/icon_chevron_gray_left.svg);
  -webkit-mask-image: url(../images/icon_chevron_gray_left.svg);
  width: 24px;
  height: 24px;
  background: #242424;
}
.product-details .common-btn-prev:hover:after,
.product-detail-prev-mobile .common-btn-prev:hover:after,
.product-details .common-btn-next:hover:after,
.product-detail-next-mobile .common-btn-next:hover:after {
  width: 24px;
  height: 24px;
}
.product-details .common-btn-next::after,
.product-detail-next-mobile .common-btn-next::after {
  mask-image: url(../images/icon_chevron_gray_right.svg);
  -webkit-mask-image: url(../images/icon_chevron_gray_right.svg);
  width: 24px;
  height: 24px;
  background: #242424;
}
.product-details .common-btn-prev.swiper-button-disabled::after,
.product-details .common-btn-next.swiper-button-disabled::after,
.product-detail-prev-mobile .common-btn-prev.swiper-button-disabled::after,
.product-detail-next-mobile .common-btn-next.swiper-button-disabled::after {
  background: #858585;
}
.product-details .common-btn-prev,
.product-detail-prev-mobile .common-btn-prev {
  left: 14px;
}
.product-details .common-btn-next,
.product-detail-next-mobile .common-btn-prev {
  right: 14px;
}
.product-details .swiper-button-lock {
  display: none;
}
.product-details-slider-mobile {
  display: none;
}
.product-details-slider-mobile .swiper-slide {
	height: 100%;
}
.product-details-slider-mobile .swiper-slide .product-img-block {
	height: 100%;
}
.product-details-slider-mobile .swiper-slide .product-img-block img {
  object-fit: cover;
}
/* Swiper Xzoom */
.product-detail {
  position: relative;
}
.product-img-block {
  padding: 14px;
  border: 1px solid #ddd;
  max-width: 100%;
  height: 518px;
}
.product-img-block.video {
  position: relative;
  padding: 14px;
  /* padding-top: 100%; */
  height: 518px;
}
.product-details video {
	width: 100%;
	height: 100%;
}
.product-img-block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product-detail-thumb {
  margin-top: 20px;
}
.product-img-thumb-block {
  padding: 10px;
  border: 1px solid #ddd;
  position: relative;
  height: 100%;
}
.product-detail-thumb .swiper-slide {
	height: 100%;
}
.product-detail .available {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: #f1f1f1;
  color: #242424;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: 18px;
  text-transform: uppercase;
  padding: 3px 12px;
  z-index: 1;
}

.product-detail .offer {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: #fbb516;
    color: #242424;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    padding:6px 12px;
    z-index: 1;
    border-radius: 28px;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.product-detail .offer {
    transition: all 0.3s ease-in-out;
    transform: scale(1);
}

.product-detail .offer:hover {
    transform: scale(1.05);
}


.product-detail .bogo {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: #fbb516;
    color: #242424;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
    padding:6px 12px;
    z-index: 1;
    border-radius: 28px;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.product-detail .bogo {
    transition: all 0.3s ease-in-out;
    transform: scale(1);
}

.product-detail .bogo:hover {
    transform: scale(1.05);
}

.play-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}
.product-details-head {
  position: relative;
  margin-bottom: 16px;
  z-index: -1;
}
.product-rating {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #242424;
  padding: 1px 5px;
}
.product-rating .icon-star-fill::before {
  width: 11px;
  height: 11px;
}
.product-details-head h2 {
  max-width: 400px;
  line-height: 42px;
  margin-bottom: 16px;
}
.product-details-head .product-pricing h5 > span {
  margin-left: 12px;
}
.pack-size {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
.pack-size .check-group label {
  padding: 3px 19px;
  border: 1px solid #fbb516;
  color: #242424;
}
.pack-size .check-group input {
  display: none;
}
.pack-size .check-group input[type="radio"]:checked ~ label {
  background-color: #fbb516;
}
.product-details .product-details-head p {
  font-size: 14px;
  line-height: 21px;
  max-width: 100%;
}
.product-details p {
  font-size: 16px;
  line-height: 24px;
  color: #858584;
}
/* .product-details p,
.product-details .common-list{
  max-width: 628px;
} */
.page-border {
  margin-bottom: 16px;
  border-bottom: 1px solid #e9e9e9;
}
.product-details .btn-action-group .icon-border-btn {
  max-width: 302px;
  width: 100%;
}
.product-details .btn-action-group .buy-now {
  width: 100%;
}
.product-details .btn-action-group,
.product-details .buy-btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 24px;
}
.product-details .btn-action-group {
  margin-bottom: 16px;
}
.product-details .btn-action-group.g-16 {
  justify-content: space-between;
  gap: 16px;
  max-width: 519px;
}
.product-details-content .read-more {
  color: #fbb516;
  padding: 0;
  margin-bottom: 16px;
  cursor: pointer;
}
.product-details-content .read-more:hover {
  color: #242424;
}
.product-details-content .hidden-content {
  display: none;
}
.product-details-content .read-more.active {
  margin-top: 16px;
}
.review-block {
  margin-bottom: 24px;
}
.review-star-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.review-star-rating i::before {
  width: 18px;
  height: 18px;
}
.review-block .text-sm {
  font-weight: 500;
  margin-bottom: 6px;
}
.product-details h6 {
  margin-bottom: 12px;
}
.product-details-head.mobile {
  display: none;
}
.replace-cart-modal .modal-body h3 {
  margin-bottom: 16px;
}
.replace-cart-modal .modal-body p {
  font-size: 16px;
  line-height: 24px;
  color: #505050;
  margin-bottom: 24px;
  text-align: center;
}
.replace-cart-modal .modal-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 24px;
}
.replace-cart-modal .modal-btn-group .btn {
  width: 130px;
  text-align: center;
  box-shadow: none !important;
}
 .zoom-container {
  position: relative;
  z-index: 0;
}
.zoom-container .icon-left, .zoom-container .icon-right {
  width: 40px;
  height: 40px;
  border: 1px solid #DDDDDD;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  margin: auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
.zoom-container .icon-right { 
  left: auto;
  right: 25px; 
}
.zoom-container .icon-left i:before, .zoom-container .icon-right i:before { 
  transition: all 0.4s;
}
.zoom-container .icon-left:hover i:before, .zoom-container .icon-right:hover i:before { 
  background: #858584;
  transition: all 0.4s;
}
.show-zoom {
  width: 500px;
  height: 500px;
  border: 1px solid #DDD;
  padding: 12px 14px;
  z-index: 99;
  background-color: #FFF;
}
.show-zoom .big-image {
  z-index: 9;
  left: 100% !important;
}
.show-zoom img {
  max-width: inherit;
  display: inline;
  object-fit: contain;
}
.small-img {
  width: 470px;
  height: 188px;
  margin-top: 10px;
  position: relative;
  left: 0;
}
.small-container {
  width: 100%;
  height: 188px;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
}
.small-container div {
  width: 800%;
  position: relative;
}
.small-container .show-small-img {
  width: 146px;
  height: 188px;
  margin-right: 16px;
  cursor: pointer;
  float: left;
  object-fit: contain;
  border: 1px solid #ddd;
  padding: 9px;
}
.small-container .show-small-img:last-of-type { margin-right: 0; } 
/* End Product Detail */
/* Cart */
.cart {
  padding-bottom: 30px;
}
.cart-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 45px;
}
.cart-top h2 {
  line-height: 42px;
}
.cart-top .link-button {
  color: #fbb516;
}
.purchase-option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 30px;
  gap: 32px;
}
.cart-item-lists {
  margin-bottom: 0;
  border: 1px solid #ddd;
}
.cart-item-lists li {
  border-top: 1px solid #ddd;
}
.cart-item-lists li:first-child {
  border-top: 0;
}
.cart-item-lists .single-product {
  display: flex;
  align-items: flex-start;
  padding: 32px;
}
.product-img a {
  width: 146px;
  height: 188px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 0;
  display: block;
  padding: 10px;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cart-item-lists .single-product .product-detail {
  padding-left: 32px;
  text-align: left;
  width: 100%;
  position: relative;
}
.product-detail .title-one {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.quantity {
  color: #858584;
  font-weight: 400;
}
.quantity > span {
  color: #242424;
}
.cart-item-lists .product-detail ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}
.cart-item-lists .product-detail ul li {
  color: #242424;
  margin-right: 0;
  padding-right: 0;
  position: relative;
}
.cart-item-lists .product-detail ul li::after {
  display: none;
}
.cart-item-lists .product-detail ul li:last-child {
  padding: 0;
  margin: 0;
}
.link-button {
  line-height: 24px;
  font-weight: 500;
  text-transform: uppercase;
  color: #a01d22;
  transition: all 0.3s;
}
.link-button:hover {
  color: #242424;
  transition: all 0.3s;
}
.border-button {
  line-height: 24px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: underline;
  color: #242424;
  transition: all 0.3s;
}
.border-button:hover {
  color: #fbb516;
  transition: all 0.3s;
}
.cart-item-lists .product-detail span {
  margin-bottom: 0;
}
.product-pricing {
  text-align: right;
}
.product-pricing h5 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}
.product-pricing h5 > span {
  font-weight: 400;
  color: #858584;
  text-decoration: line-through;
  margin-left: 16px;
}
.price-disable {
  color: #fe9901;
  text-decoration: line-through;
  padding-bottom: 5px;
}
.cart-price-block {
  position: sticky;
  top: 140px;
}
.grey-card {
  padding: 24px;
  background-color: #f1f1f1;
}
.price-details,
.convenience-inner table {
  margin: 0;
  border-collapse: inherit;
  width: 100%;
  table-layout: fixed;
}
.price-details tr th {
  padding-bottom: 16px;
  font-weight: 500;
}
.price-details tr td,
.convenience-inner tr td {
  width: 50%;
  padding: 0;
  padding-bottom: 10px;
  color: #858584;
}
.price-details tr td:nth-child(odd),
.convenience-inner tr td:nth-child(odd) {
  text-align: left;
}
.price-details tr td:nth-child(even),
.convenience-inner tr td:nth-child(even) {
  text-align: right;
}
.convenience-inner tr td {
  font-size: 14px;
  line-height: 21px;
  color: #696767;
  padding-bottom: 6px;
}
.convenience-inner tr:last-child td {
  padding-bottom: 16px;
}
.convenience-inner tr td:nth-child(odd) {
  padding-left: 20px;
}
.convenience-row td > span {
  margin-left: 8px;
}
.convenience-row svg {
  transform: rotate(180deg);
  transition: all 0.4s;
}
.convenience-row.toggle.toggled-on svg {
  transform: rotate(0);
  transition: all 0.4s;
}
.price-details .convenience-row td {
  padding-bottom: 8px;
  white-space: nowrap;
}
.price-details .total-amount td {
  padding: 16px 0 24px;
  color: #242424;
  font-weight: 500;
}
.price-details .total-amount td:nth-child(even) {
  font-weight: 700;
}
.price-details .text-row td:nth-child(2n + 1) {
  padding: 0;
  text-align: center;
  padding-bottom: 24px;
}
.price-details .text-row td p {
  font-weight: 500;
}
/* .pricing {
  display: none;
} */
/* Cart End */

/* Checkout */
/* .add-new-address {
  display: none;
} */
.pickup-order-main {
  display: none;
}
.checkout h2 {
  margin-bottom: 32px;
}
.checkout .purchase-option .radio-group label {
  color: #858584;
}
.checkout .purchase-option .radio-group input[type="radio"]:checked + label {
  color: #242424;
}
.checkout-head {
  background: #f1f1f1;
  margin: 0 0 24px;
  padding: 10px 20px;
}
.checkout-form .page-border {
  margin-bottom: 24px;
}
.checkout-heading-flex-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.checkout-heading-flex-group .link-button {
  display: inline-block;
  margin-left: 6px;
}
.after-login {
  display: block;
  text-align: left;
  color: #3b3b3b;
  width: 100%;
  margin-top: 4px;
  margin-bottom: 0;
}
.after-login .border-button {
  text-transform: lowercase;
  color: #3b3b3b;
  display: inline-block;
}
.after-login .border-button:hover {
  color: #fbb516;
}
.checkout-flex-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -12px;
}
.checkout-flex-group .zip-code,
.checkout-flex-group .city {
  padding: 0 12px;
}
.checkout-flex-group .zip-code {
  width: 40%;
}
.checkout-flex-group .city {
  width: 60%;
}
.shipping-info h4 {
  margin-bottom: 24px;
}
.shipping-info {
  margin-top: 24px;
  display: none;
}
.shipping-info.show {
  display: block;
}
.checkout-form .address-group.radio-group input[type="radio"] + label {
  height: 20px;
  padding: 0;
  width: 20px;
  flex-shrink: 0;
}
.checkout-form .address-group,
.checkout-form .radio-btn {
  display: flex;
  align-items: flex-start;
}
.checkout-form .address-group {
  justify-content: space-between;
  border: 1px solid #dddddd;
  padding: 20px;
  width: 100%;
  margin-bottom: 24px;
  position: relative;
}
.checkout-form .address-group:last-child {
  margin: 0;
}
.checkout-form .address-group h5 {
  line-height: 26px;
  margin: 0 0 16px;
  display: none;
}
.checkout-form .address-group p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.checkout-form .address-group .detail {
  margin: 0 12px;
}
.checkout-form .address-group address {
  max-width: 235px;
}
.checkout-form .address-group p > a {
  color: #858584;
}
.checkout-form .address-group p > a:hover {
  color: #fbb516;
}
.checkout-form .address-group .store-pin {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 4px;
  position: absolute;
  top: 20px;
  right: 20px;
}
.card-payment-group {
  background-color: #f1f1f1;
  padding: 24px 20px;
  margin-bottom: 24px;
}
.card-payment-group:last-child {
  margin: 0;
}
.card-payment-group .radio-group input[type="radio"] + label {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #000000;
}
.card-payment-group .radio-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-payment-group .payment-group-block {
  margin-bottom: 24px;
  padding: 16px;
  background: #fff;
  border: 1px solid #ddd;
}
.card-detail {
  display: none;
}
.card-detail {
  margin-top: 26px;
}
.card-payment-group .radio-group img {
  flex-shrink: 0;
}
.checkout-flex-group.expiration-date .zip-code {
  width: 60%;
}
.checkout-flex-group.expiration-date .city {
  width: 40%;
}
.checkout-flex-group.expiration-date {
  margin-bottom: -24px;
}
.card-payment-group h6 {
  margin-bottom: 10px;
}
.card-payment-group .success-message {
  font-weight: 500;
}
.loyalty-points-group p {
  color: #302929;
  font-weight: 400;
  margin: 0;
}
.loyalty-points-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.loyalty-points-group .check-group label {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.loyalty-points-form-group {
  position: relative;
  margin-top: 24px;
}
.loyalty-points-form-group label {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  align-items: center;
}
.loyalty-points-form-group label i {
  margin-right: 12px;
}
.loyalty-points-form-group .remove-btn {
  position: absolute;
  right: 16px;
  top: 48px;
  border: none;
  padding: 0;
  text-underline-offset: 2px;
  color: #fbb516;
  transition: 0.4s;
}
.loyalty-points-form-group .remove-btn:hover {
  color: #242424;
  transition: 0.4s;
}
.loyalty-points-form-group input {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding-right: 76px;
}
.order-summary-body {
  background: #f1f1f1;
  padding: 24px;
}
.order-summary-body .toggle1 {
  border-bottom: 1px solid #dcd7da;
  padding-bottom: 16px;
  margin-bottom: 16px;
  font-weight: 400;
  position: relative;
  cursor: pointer;
}
.order-summary-body .toggle1::before {
  content: "";
  position: absolute;
  background: url("../images/icon_chevron.svg") no-repeat center;
  background-size: contain;
  width: 20px;
  height: 20px;
  top: 4px;
  right: 0;
  transition: all 0.4s;
}
.order-summary-body .toggle1.toggled-on::before {
  transform: rotate(180deg);
  transition: all 0.4s;
}
.cart-item-list {
  margin-bottom: 30px;
  display: block;
}
.cart-item-list .single-product {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.cart-item-list .single-product:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.cart-item-list .product-img a,
.order-list .product-img a {
  width: 83px;
  height: 106px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 0;
  display: block;
  padding: 10px;
}
.cart-item-list .quantity,
.order-list .quantity {
  color: #858584;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 2px;
}
.cart-item-list .product-detail,
.order-list .product-detail {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.cart-item-list .product-detail-main h6,
.order-list .product-detail-main h6 {
  margin-bottom: 2px;
}
.cart-item-list .product-detail-main h6 a,
.order-list .product-detail-main h6 a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-item-list .product-detail ul,
.order-list .product-detail ul {
  text-align: right;
  margin-bottom: 0;
}
.cart-item-list .product-pricing h5,
.order-list .product-pricing h5 {
  font-weight: 500;
}
.cart-item-list .product-pricing h5 > span,
.order-list .product-pricing h5 > span {
  margin-left: 0;
  display: block;
}
.order-summary-body .price-detail h6 {
  margin-bottom: 10px;
}
.order-summary-body .price-list li {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #858584;
  margin-bottom: 10px;
}
.order-summary-body .price-list {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dcd7da;
}
.order-summary-body .total-amount,
.order-summary-body .price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 8px;
}
.order-summary-body .price-list .convenience-row span > span {
  margin-left: 8px;
}
.order-summary-body .price-list .convenience-inner > ul {
  width: 100%;
  padding-left: 20px;
}
.order-summary-body .total-amount h5 {
  margin: 0;
}
.order-summary-body .total-amount h5:last-child {
  font-weight: 700;
}
.order-summary-body .price-list li:last-child {
  margin: 0;
}
.order-summary-body .terms-conditions {
  align-items: flex-start;
  margin: 32px 0 24px;
}
.order-summary-body .terms-conditions input {
  width: 20px;
  height: 20px;
  border: 2px solid #858584;
}
.order-summary-body .terms-conditions label {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #242424;
  padding-left: 10px;
}
.order-summary-body .terms-conditions .border-button {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}
.order-summary-body .place-order-btn {
  width: 100%;
}
.order-successfully-modal .modal-body {
  text-align: center;
}
.order-successfully-modal .modal-body img {
  margin: 0 auto 24px;
  max-width: 134px;
}
.order-successfully-modal h6 span {
  color: #695f70;
}
.order-successfully-modal h3,
.order-successfully-modal h6,
.order-successfully-modal p {
  margin-bottom: 10px;
}
.order-successfully-modal p {
  color: #695f70;
  font-weight: 400;
}
.order-successfully-modal p.description {
  margin-bottom: 24px;
}
.order-successfully-modal .click-here-btn {
  margin-top: 10px;
}
.order-successfully-modal .modal-dialog {
  max-width: 482px;
}
.swal2-shown {
  padding-right: 0 !important;
}
#clear-coupon {
  cursor: pointer;
}
/* End Checkout */

/* Account */
.account-sidebar {
  background: #f1f1f1;
  padding: 24px;
  margin: 0;
  position: sticky;
  top: 150px;
}
.account-sidebar .sidebar-item {
  margin-bottom: 8px;
}
.account-sidebar .sidebar-item:last-child {
  margin-bottom: 0;
}
.account-sidebar .sidebar-item .sidebar-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding: 10px;
  display: flex;
  align-items: center;
  color: #858584;
  transition: all 0.3s ease-in-out;
}
.account-sidebar .sidebar-item .sidebar-link:hover,
.account-sidebar .sidebar-item .sidebar-link:focus {
  background: #ffffff;
  color: #242424;
  transition: all 0.3s ease-in-out;
}
.account-sidebar .sidebar-item .sidebar-link.active {
  background: #ffffff;
  color: #242424;
}
.account-sidebar .sidebar-item .sidebar-link svg {
  margin-right: 8px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.account-sidebar .sidebar-item .sidebar-link svg path {
  transition: all 0.3s ease-in-out;
}
.account-sidebar .sidebar-item .sidebar-link.active svg path,
.account-sidebar .sidebar-item .sidebar-link:hover svg path,
.account-sidebar .sidebar-item .sidebar-link:focus svg path {
  fill: #242424;
  transition: all 0.3s ease-in-out;
}
.common-card {
  padding: 32px;
  border: 1px solid #dddddd;
}
.account-information {
  padding: 0;
  margin-bottom: 32px;
}
.account-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 32px 13px 32px;
  border-bottom: 1px solid #dddddd;
}
.account-info-button {
  display: flex;
  align-items: center;
  gap: 24px;
}
.account-basic-info {
  padding: 24px 32px 24px 32px;
}
.account-basic-info-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap-reverse;
  gap: 10px;
  margin-bottom: 16px;
}
.account-basic-info ul {
  margin-bottom: 24px;
}
.account-basic-info ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 6px;
}
.account-basic-info ul li span {
  max-width: 217px;
  width: 100%;
  color: #858584;
}
.account-basic-info ul li a {
  color: #000000;
}
.account-basic-info ul li a:hover {
  color: #fe9901;
}
.account-address-info {
  padding: 24px 32px 32px 32px;
}
.account-address p {
  margin-bottom: 2px;
}
.account-address h4 {
  display: none;
}
.account-address a {
  color: #000000;
}
.account-address a:hover {
  color: #fe9901;
}
.account-address address {
  max-width: 187px;
  margin-bottom: 2px;
  color: #000000;
}
.account-address-links {
  display: flex;
  align-items: center;
  margin-top: 60px;
}
.account-address-links a {
  position: relative;
  color: #fbb516;
}
.account-address-links a:hover {
  color: #242424;
}
.account-address-links a:first-child {
  margin-right: 10px;
  padding-right: 10px;
}
.account-address-links a:first-child::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 1px;
  height: 17px;
  background-color: rgba(150, 153, 156, 0.6);
}
.account-address .another-address {
  max-width: 224px;
}
.recent-order h4 {
  margin-bottom: 28px;
  font-weight: 400;
}
.order-detail {
  display: flex;
  align-items: center;
  background: #f1f1f1;
  padding: 16px 0;
  margin: 0 -32px 16px;
}
.order-detail li {
  padding-left: 32px;
}
.order-detail li:last-child {
  padding-right: 32px;
  text-align: end;
}
.order-detail li span.text-dark-grey {
  color: #858584;
}
.order-detail li span.text-black {
  color: #000000;
}
.add-review-block p {
  margin-bottom: 48px;
}
.your-review-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 0;
}
.your-review-block ul li {
  margin-bottom: 16px;
}
.your-review-block ul li:last-child {
  margin-bottom: 0;
}
.your-review-block .your-review-img {
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  color: #fff;
  background-color: #696767;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}
.recent-order .mini-product-top {
  position: relative;
  display: flex;
  gap: 15px;
}
.recent-order .product-img a {
  width: 102px;
  height: 79px;
  padding: 5px 21px;
}
.recent-order .product-detail {
  width: 100%;
}
.order-product-price {
  position: absolute;
  top: 0;
  right: 0;
}
.account-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
  gap: 12px;
}
.tag {
  position: relative;
  background: linear-gradient(90deg, #fe9901 -0.09%, #ffd93b 99.91%);
  margin: 0;
  padding: 5px 21px;
  color: #232b44 !important;
}
.tag:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 5px solid #ffffff;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
}
.tag:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-right: 5px solid #ffffff;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
}
/* Account End */

/* Registration */
.registration {
  position: relative;
  z-index: 0;
}
.registration::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 260px;
  background-color: #fff7e3;
  z-index: -1;
}
.registration h1 {
  font-weight: 400;
}
.registration-content {
  padding: 60px 0 80px;
  max-width: 475px;
  width: 100%;
  margin: 0 auto;
}
.registration-content h6 {
  font-weight: 400;
  color: #695f70;
}
.registration-card,
.thank-you-block {
  padding: 32px;
  background: #ffffff;
  box-shadow: 0px 23px 59px 0px rgba(222, 226, 230, 0.25);
  margin-top: 32px;
}
label.error,
label.message {
  position: relative;
  color: #ff4444;
  margin-top: 8px;
  margin-bottom: 0;
  font-weight: 300;
  display: none;
}
.registration
  .input-group
  > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
    .valid-feedback
  ):not(.invalid-tooltip):not(.invalid-feedback),
.change-password
  .input-group
  > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
    .valid-feedback
  ):not(.invalid-tooltip):not(.invalid-feedback),
.edit-address
  .input-group
  > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
    .valid-feedback
  ):not(.invalid-tooltip):not(.invalid-feedback),
.contact
  .input-group
  > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
    .valid-feedback
  ):not(.invalid-tooltip):not(.invalid-feedback) {
  /* margin-left: 10px; */
}
.phone-number .numbers {
  position: absolute;
  top: 13px;
  left: 16px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  max-width: 89px;
  padding: 0;
}
.phone-number input {
  padding-left: 120px;
}
.registration
  .input-group
  > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
    .valid-feedback
  ):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: 0;
}
.registration-form p {
  padding-top: 24px;
  font-weight: 500;
  color: #3b3b3b;
}
.registration-form p > a {
  margin-left: 6px;
  line-height: 24px;
  font-weight: 500;
  color: #fbb516;
  text-transform: uppercase;
  transition: 0.4s;
}
.registration-form p > a:hover {
  color: #242424;
  transition: 0.4s;
}
.form-password {
  position: relative;
}
.form-password input,
.form-password-input {
  padding-right: 44px;
}
.toggle-password {
  position: absolute;
  top: 45px;
  right: 12px;
}
.show-password,
.hide-password {
  padding: 0;
  border: none;
  display: block;
}
.show-password {
  display: none;
}
.show-hide-password .hide-password {
  display: none;
}
.show-hide-password .show-password {
  display: block;
}
.registration-content .shipping-info {
  margin-top: 0;
}
.login,
.otp,
.forget {
  display: none;
}
.forget-pass {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
}
.forget-pass a {
  display: inline-block;
  font-weight: 500;
  text-align: end;
  color: #232b44;
}
.forget-pass a:hover {
  color: #fe9901;
}
.forget .registration-form p {
  max-width: 240px;
  margin: 0 auto;
}
.forget .registration-form p > a {
  display: block;
  margin-top: 16px;
}
.pass-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0 0 24px;
}
.pass-wrap input {
  padding: 0;
  width: 60px;
  height: 60px;
  font-size: 32px;
  line-height: 48px;
  text-align: center;
}
.pass-wrap input:focus {
  border-color: #fe9901;
}
.registration-social p {
  text-align: center;
  color: #858584;
  font-weight: 400;
}
.forget .registration-social p {
  margin-bottom: 16px;
}
.registration-social ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 0;
}
/* Registration End */

/* Address Listing */
.address-row {
  margin-bottom: -24px;
}
.address-column {
  margin-bottom: 24px;
}
.address-listing .common-card {
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.address-listing .account-address a.body-large {
  margin-bottom: 60px;
}
.address-listing .account-address-links {
  margin-top: 0;
  align-items: flex-end;
}
.add-address {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.add-address i {
  width: 68px;
  height: 68px;
  font-size: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(150, 153, 156, 0.6);
  margin-bottom: 10px;
}
/* Address Listing End */

/* Order Listing */
.order-listing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.order-list {
  padding: 0;
  margin-bottom: 32px;
}
.order-list:last-child {
  margin-bottom: 0;
}
.order-list .order-detail {
  padding: 16px 32px;
  margin: 0 0 16px 0;
}
.order-list .order-detail li:first-child {
  padding-left: 0;
}
.order-list .order-detail li:last-child {
  padding-right: 0;
}
.order-list .order-list-title {
  padding-left: 32px;
}
.order-list h6 .text-dark-grey {
  padding-left: 16px;
  display: inline-block;
}
.order-list .single-product {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 32px 24px;
}
.order-list .mini-product-top {
  padding: 0 32px 24px;
}
.order-list .order-product-price {
  right: 32px;
}
.order-list .product-img a {
  width: 83px;
  height: 106px;
  padding: 5px;
}
.order-list .reorder-btn {
  position: absolute;
  bottom: 24px;
  right: 32px;
  padding: 8px 16px;
  letter-spacing: 0;
}
.order-list .body-normal {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.order-detail .border-button {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
/* Order Listing End */

/* Order Details */
.text-bold {
  font-weight: 500;
}
.order-details-info {
  padding: 0 32px 32px;
}
.order-details .common-card {
  border: none;
  padding: 0;
}
.order-summary-list li,
.order-summary-list .convenience-inner li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.order-summary-list > li:first-child {
  margin-bottom: 16px;
}
.order-summary-list > li:last-child {
  margin-bottom: 0;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #dcd7da;
}
.order-summary-list > li:last-child span:last-child {
  font-weight: 700;
}
.order-summary-list .convenience-inner ul {
  width: 100%;
  padding-left: 20px;
  margin-bottom: 0;
}
.order-summary-list .convenience-inner li {
  margin-bottom: 6px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  color: #858584;
}
.order-summary-list .convenience-inner li:last-child {
  margin-bottom: 0;
}
.order-summary-list .convenience-row span > span {
  margin-left: 8px;
}
.order-detail-list > li {
  border-top: none;
}
.order-detail-list > li:first-child {
  padding: 32px 32px 20px 32px;
}
.order-summary-list li span.text-dark-grey {
  color: #858584;
}
.order-detail-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.order-detail-heading h6 {
  padding: 0;
}
.order-detail-list > li:first-child p.samll-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #858584;
  margin-top: 6px;
  margin-bottom: 0;
}
.order-listing {
  max-height: 328px;
  overflow-y: auto;
}
.order-listing > li {
  padding-bottom: 16px;
  margin: 0 32px 16px;
  border-bottom: 1px solid rgba(114, 106, 106, 0.2);
}
.order-listing li:last-child {
  border-bottom: none;
}
.order-list.order-detail-list .single-product {
  padding: 0;
}
.order-listing .mini-product-top {
  padding: 0 32px;
}
.order-listing .order-product-price {
  right: 32px;
}
.product-tracking {
  padding-right: 16px;
  padding-bottom: 20px;
}
.product-tracking .text-dark-grey {
  color: #858584;
}
.product-tracking-block {
  margin: 16px 0 0;
  padding-right: 36px;
  overflow-y: auto;
  max-height: 330px;
}
.product-tracking-block li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-bottom: 16px;
}
.product-tracking-block li:last-child {
  padding-bottom: 0;
}
.product-tracking-block li span {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #242424;
}
.product-tracking-block li span.text-dark-grey {
  color: #858584;
  font-weight: 400;
}
.tracking-info {
  border-left: 1px solid rgba(133, 133, 132, 0.2);
  margin-left: 16px;
  padding-left: 16px;
}
.tracking-info span {
  white-space: nowrap;
}
.tracking-info label {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 10px;
}
.add-review-modal h4 {
  margin-bottom: 32px;
}
/* .star-rating {
  direction: rtl;
  display: inline-block;
	margin-bottom: 40px;
}
input[type=checkbox].star-icon {
  display: none;
}
.star-button {
  margin-bottom: 0;
  padding-left: 24px;
}
.star-button:last-child {
  padding-left: 0;
}
.star-button:before, .star-button:after {
  content: "";
  cursor: pointer;
  background-image: url(../images/icon_star.svg);
  background-size: cover;
  height: 40px;
  width: 40px;
  display: block;
  transition: all 0.4s;
}
.star-button:after {
  display: none;
  background-image: url(../images/icon_star_fill.svg);
}
input[type=checkbox]:checked ~ .star-button:before {
  background-image: url(../images/icon_star_fill.svg);
} */

/* Your existing CSS styles */

.star-rating {
  direction: ltr;
  display: inline-block;
  margin-bottom: 40px;
}

input[type="checkbox"].star-icon {
  display: none;
}

.star-button {
  margin-bottom: 0;
  padding-left: 24px;
}

.star-button:before {
  content: "";
  cursor: pointer;
  background-image: url(../images/icon_star.svg); /* Use your blank star image */
  background-size: cover;
  height: 40px;
  width: 40px;
  display: block;
  /* transition: all; */
}

input[type="checkbox"]:checked + .star-button:before {
  background-image: url(../images/icon_star_fill.svg); /* Use your filled star image */
}
.add-review-modal .form-group label {
  text-align: left;
  display: block;
}
.add-review-modal .form-group textarea {
  height: 150px;
}
.add-review-modal .modal-dialog {
  max-width: 526px;
}
/* Order Details End */

/* CMS */
.cms-content h2 {
  line-height: 42px;
  margin-bottom: 24px;
}
.cms-content p {
  font-size: 18px;
  line-height: 34px;
  font-weight: 400;
  padding-right: 30px;
}
.cms-content .cms-image {
  /* display: none; */
}
.csm-slider-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* CMS End */

/* Error Page */
.content-text {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.error-page {
  text-align: center;
  margin: 0 auto;
}
.error-page .image-center {
  margin-bottom: 30px;
}
.error-page h2 {
  max-width: 670px;
  color: #695f70;
}
.largest-text h1 {
  font-size: 150px;
  line-height: 190px;
  font-weight: 600;
}
.thank-you-block {
  margin-bottom: 0;
  text-align: center;
}
.thank-you-image {
  display: inline-block;
  margin: 0 auto;
}
.thank-you-block p {
  max-width: 700px;
  margin: 0 auto 16px;
}
/* Error Page End */

/* Contact Us */
.contact-sidebar-wrapper {
  position: sticky;
  top: 150px;
}
.contact-sidebar {
  background: #f1f1f1;
  padding: 24px;
  margin: 0;
}
.contact-sidebar .sidebar-item {
  margin-bottom: 8px;
}
.contact-sidebar .sidebar-item:last-child {
  margin-bottom: 0;
}
.contact-sidebar .sidebar-item .sidebar-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding: 10px;
  display: flex;
  align-items: center;
  color: #858584;
  transition: all 0.3s ease-in-out;
}
.contact-sidebar .sidebar-item .sidebar-link:hover,
.contact-sidebar .sidebar-item .sidebar-link:focus {
  background: #ffffff;
  color: #242424;
  transition: all 0.3s ease-in-out;
}
.contact-sidebar .sidebar-item .sidebar-link.active {
  background: #ffffff;
  color: #242424;
}
.contact-inner-wrapper {
  padding: 20px;
  border: 1px solid #ddd;
}
.contact-inner-list {
  margin-bottom: 0;
}
.contact-inner-list li {
  margin-bottom: 12px;
}
.contact-inner-list li:last-child {
  margin-bottom: 0;
}
.contact-inner-list li h5,
.store-timings h5 {
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-inner-list li address {
  max-width: 220px;
}
.contact-inner-map iframe {
  height: 330px;
  width: 100%;
  display: block;
}
/* Contact Us End */

/* FAQ */
.faq-block .accordion {
  margin-top: 32px;
  position: relative;
  z-index: 0;
}
.faq-block .accordion-item {
  margin-bottom: 24px;
  border: 1px solid #ddd;
}
.faq-block .accordion-item:last-child {
  margin: 0;
}
.faq-block .accordion-button {
  padding: 30px 40px;
  gap: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #000000;
}
.faq-block .accordion-button:not(.collapsed) {
  background-color: #ffffff;
  box-shadow: none;
  padding-bottom: 0;
}
.faq-block .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}
.faq-block .accordion-body {
  padding: 15px 114px 30px 40px;
}
.faq-block .accordion-button::after {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../images/icon_chevron_black.svg);
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(-90deg);
  transition: transform 0.2s ease-in-out;
  border: 1px solid #a7a5a6;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-block .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
  background-color: #fbb516;
  border: 1px solid #fbb516;
  color: #ffffff;
}
/* FAQ End */

/* Our Shops */
.our-shops-content .contact-inner-list {
  margin-bottom: 16px;
}
.timings {
  border: 1px solid #ddd;
  max-width: 350px;
}
.timings li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid #ddd;
}
/* .timings li:first-child {
  padding-top: 8px;
} */
.timings li:last-child {
  border-bottom: 0;
}
.our-shops-map iframe {
  height: 600px;
  width: 100%;
  display: block;
}
/* Our Shops End */

/* Queries */
.common-card.queries-from {
  padding: 24px;
}
/* Queries End */
/* Order By Phone */
.quoted {
  position: relative;
  padding-left: 12px;
}
.quoted::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #fbb516;
}
.content-inner .quoted li {
  margin-bottom: 8px;
  padding: 0;
}
.quoted li::before {
  display: none;
}
.quoted a {
  padding-left: 8px;
}
/* Order By Phone End */

/* Our Shop */
.shop-title {
  text-align: center;
  margin-bottom: 30px;
}
.shop-row {
  margin-bottom: -24px;
}
.shop-col {
  margin-bottom: 24px;
}
.shop-title > p {
  max-width: 700px;
  margin: 0 auto;
}
.our-shop-box {
  position: relative;
}
.our-shop-image {
  overflow: hidden;
  position: relative;
}
.our-shop-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.our-shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.our-shop-box:hover .our-shop-image img {
  transform: scale(1.2);
  transition: 0.4s;
}
.our-shop-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0 auto;
  text-align: center;
}
.our-shop-content .solid-button {
  font-size: 14px;
  padding: 10px 20px;
}

.our-shop-box {
  border: 1px solid #dddddd;
  height: 100%;
}
.our-shop-box-content {
  padding: 18px;
}
.our-shop-box-content a {
  color: #fbb516;
}
.our-shop-box-content a:hover {
  color: #2b2b2b;
}
.our-shop-content-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.our-shop-content-top h5 {
  max-width: 100%;
}
.our-shop-content-top a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #2b2b2b;
}
.our-shop-content-top a:hover {
  color: #fbb516;
}
.our-shop-content-top address {
  /* max-width: 300px; */
  display: block;
  width: 100%;
}
.our-shop-content-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.our-shop-timings {
  padding: 12px 18px;
  margin-bottom: 0;
  border-top: 1px solid #dddddd;
}
.our-shop-timings li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

/* End Our Shop */

/* Blog */
.blog-row {
  margin-bottom: -24px;
}
.blog-col {
  margin-bottom: 24px;
}
#blog-row .blog-col.hidden {
  display: none;
}
.loader {
  position: fixed;
  visibility: hidden;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0.3;
  background: url("../../../assets/dashboard/images/Loader.gif") 50% 50%
    no-repeat rgb(249, 249, 249);
}

#loader {
  width: 100%;
  padding: 5px 10px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  /* color:white;
  background: rgba(0,0,23,0.71);
  box-shadow: 0 0 10px black;	 */
}
#loader h2 {
  color: #fbb516;
}
#loader.hidden {
  display: none;
}
/* Blog End */

/* Customer Support */
.customer-support-title {
  margin-bottom: 30px;
  text-align: center;
}
.customer-support-title p {
  max-width: 450px;
  margin: 0 auto;
}
.customer-support-row {
  margin-bottom: -24px;
}
.customer-support-col {
  padding-bottom: 24px;
}
.customer-support-block h5 {
  border-bottom: 1px solid #ddd;
  padding-bottom: 12px;
}
.customer-support-links {
  margin-bottom: 0;
}
.customer-support-links li {
  margin-bottom: 8px;
}
/* Customer Support End */

.stars-box {
  -ms-flex-item-align: center;
  align-self: center;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.stars-box .star {
  color: #ccc;
  cursor: pointer;
}
.stars-box .star::before {
	content: "";
	cursor: pointer;
	background-image: url(../images/icon_star.svg);
	background-size: cover;
	height: 40px;
	width: 40px;
	display: block;
}
.star.hover::before, .star.selected::before {
  mask-image: url(../images/icon_star_fill.svg);
  -webkit-mask-image: url(../images/icon_star_fill.svg);
  width: 40px;
  height: 40px;
  background: #fbb516;
}

.product-img-block.video iframe > html > body > video::-webkit-media-controls {
	display: none !important;
}

/* Icon Styling */
.icon-star-fill::before {
  mask-image: url(../images/icon_star_fill.svg);
  -webkit-mask-image: url(../images/icon_star_fill.svg);
  width: 40px;
  height: 40px;
  background: #fbb516;
}
.icon-cart::before {
  mask-image: url(../images/icon_cart.svg);
  -webkit-mask-image: url(../images/icon_cart.svg);
  width: 24px;
  height: 24px;
  background: #2b2b2b;
}
.icon-save::before {
  mask-image: url(../images/icon_save.svg);
  -webkit-mask-image: url(../images/icon_save.svg);
  width: 24px;
  height: 24px;
  background: #242424;
}
.icon-heart-bor::before {
  mask-image: url(../images/icon_heart_bor.svg);
  -webkit-mask-image: url(../images/icon_heart_bor.svg);
  width: 24px;
  height: 24px;
  background: #242424;
}
.icon-cross-black::before {
  mask-image: url(../images/icon_cross_black.svg);
  -webkit-mask-image: url(../images/icon_cross_black.svg);
  width: 32px;
  height: 32px;
  background: #242424;
}
.icon-chevron-gray-right::before {
  mask-image: url(../images/icon_chevron_gray_right.svg);
  -webkit-mask-image: url(../images/icon_chevron_gray_right.svg);
  width: 24px;
  height: 24px;
  background: #242424;
}
.icon-chevron-gray-left::before {
  mask-image: url(../images/icon_chevron_gray_left.svg);
  -webkit-mask-image: url(../images/icon_chevron_gray_left.svg);
  width: 24px;
  height: 24px;
  background: #242424;
}
.icon-eye::before {
  mask-image: url(../images/icon_eye.svg);
  -webkit-mask-image: url(../images/icon_eye.svg);
  width: 24px;
  height: 24px;
  background: #858584;
}
.icon-eye-slash::before {
  mask-image: url(../images/icon_eye_slash.svg);
  -webkit-mask-image: url(../images/icon_eye_slash.svg);
  width: 24px;
  height: 24px;
  background: #858584;
}
.icon-location::before {
  mask-image: url(../images/icon_location.svg);
  -webkit-mask-image: url(../images/icon_location.svg);
  width: 20px;
  height: 20px;
  background: #fbb516;
}
.icon-discount::before {
  mask-image: url(../images/icon_discount.svg);
  -webkit-mask-image: url(../images/icon_discount.svg);
  width: 20px;
  height: 20px;
  background: #242424;
}
.icon-bucket::before {
  mask-image: url(../images/icon_bucket.svg);
  -webkit-mask-image: url(../images/icon_bucket.svg);
  width: 22px;
  height: 22px;
  background: #3b3b3b;
}
.icon-play::before {
  background: url(../images/icon_play.svg) no-repeat center;
  width: 24px;
  height: 24px;
}
.icon-paystack::before {
  background: url(../images/icon_paystack.svg) no-repeat center;
  width: 24px;
  height: 24px;
}
.icon-momo::before {
  background: url(../images/icon_momo.svg) no-repeat center;
  width: 24px;
  height: 24px;
}
.icon-cards::before {
  background: url(../images/icon_cards.svg) no-repeat center;
  width: 24px;
  height: 24px;
}
.icon-wallet::before {
  background: url(../images/icon_wallet.svg) no-repeat center;
  width: 24px;
  height: 24px;
}
.icon-caution::before {
  mask-image: url(../images/icon_caution.svg);
  -webkit-mask-image: url(../images/icon_caution.svg);
  width: 48px;
  height: 47px;
  background: #a01d22;
}
/* Icon Styling End */

/* Spacing Style */
.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.pt-60 {
  padding-top: 60px;
}
.pb-60 {
  padding-bottom: 60px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-30 {
  margin-top: 30px;
}
.mb-30 {
  margin-bottom: 30px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pt-40 {
  padding-top: 40px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pt-20 {
  padding-top: 20px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-12 {
  margin-bottom: 12px;
}
/* End Spacing Style */

/* Colors */
.text-green {
  color: #05a715;
}
.text-yellow {
  color: #fbb516;
}
.text-grey-dark {
  color: #505050;
}
.grey-text {
  color: #858584;
}
.black-text {
  color: #242424;
}
.red-text {
  color: #ff4444;
}
.red-dark-text {
  color: #a01d22;
}
.red-background {
  background-color: #a01d22;
}
/* Colors End */
.product-detail-main-box .product-detail .swiper-wrapper{
  max-height: 520px;
}
.product-detail-thumb .swiper-slide{
  height: fit-content;
}
.best-seller-slider .swiper-slide{
  /* height: fit-content; */
}
.our-shop-content-bottom address {
  text-align: left;
}
.fixed-watsapp{
  position: fixed;
  bottom: 20px;
  right: 12px;
  z-index: 1024;
}
.product-img-block {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 500px;
}

/*.zoom-img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*}*/


.lightbox {
  display: block;
  width: 100%;
  height: 100%;
}

.lightbox img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}
