* {
  scrollbar-width: thin;
  scrollbar-color: var(--placeholder) var(--gray-first);
}

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}
*::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: var(--gray-first);
}

*::-webkit-scrollbar-track:hover {
  background-color: var(--gray-first);
}

*::-webkit-scrollbar-track:active {
  background-color: var(--gray-first);
}

*::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: var(--placeholder);
}

*::-webkit-scrollbar-thumb:hover {
  background-color: var(--placeholder);
}

*::-webkit-scrollbar-thumb:active {
  background-color: var(--placeholder);
}
:root {
  /* Colors */

  --body-bg: #fcfcfc;
  --primary: #fd9c01;
  --primary-dark: #9b6302;
  --secondry: #1c1c1c;
  --secondry-dark: #000000;
  --black: #000000;
  --white: #ffffff;
  --placeholder: #9a9f75;
  --field-border: #e5e5e5;
  --first-gray: #fffdf9;
  --common-gray: #e5e5e5;
  --gray-second: #bbb;
  --gray-third: #e4eaf1;
  --gray-fourth: #fdfdfd;
  --gray-fifth: #f9f9f9;
  --gray-text: #626a7a;
  --light-gray-text: #626a7a;
  --filter-bg: #f7f7f7;
  --green: #0ccc3f;
  --green-track: #27aa80;
  --star: #ffcd1c;
  --red: #f70000;
  --blue: #1889b5;
  --orange: #a26c09;

  /* Typography */
  --base-fonts: "Roboto", sans-serif;
  --base: 16px;
  --text-12: 12px;
  --text-14: 14px;
  --text-18: 18px;
  --text-20: 20px;
  --text-24: 24px;
  --text-26: 26px;
  --text-30: 30px;
  --text-40: 40px;
  --text-48: 48px;
  --text-56: 56px;
  --text-80: 80px;
}

/*--------------General CSS---------*/

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  color: var(--secondry);
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-stroke: 1px transparent;
  font-size: var(--base);
  font-family: var(--base-fonts);
  font-weight: 400;
  width: 100%;
  background-color: var(--body-bg);
}

img {
  border: 0 none;
  max-width: 100%;
}

a {
  outline: none;
  cursor: pointer;
  color: var(--primary);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--primary-dark);
  text-decoration: none;
}

a,
button,
.btn {
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

/*-----------------------main styles starts here-----------------------------------------------*/

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/*=====================================	PLACE HOLDER CSSS START HERE 		====================================*/
.form-control::-moz-placeholder {
  color: var(placeholder);
  opacity: 1;
}
.form-control::placeholder {
  color: var(placeholder);
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: var(--placeholder);
  opacity: 1;
}
input.form-control,
textarea.form-control,
select.form-control {
  background-color: var(--white);
  border-color: var(--field-border);
  border-radius: 0px;
  box-shadow: none;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 55px;
  color: var(--secondry);
  padding: 10px 20px;
  font-weight: 400;
}

input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus {
  box-shadow: none;
  border-color: var(--primary);
}
textarea.form-control {
  height: auto;
  overflow: auto;
  white-space: normal;
  resize: none;
  border-radius: 4px;
}
.form-label .option-note {
  font-size: var(--text-14);
  color: var(--gray-text);
}
.form-group {
  margin-bottom: 20px;
}
.addon-right {
  position: relative;
}
.addon-right .form-control {
  padding-right: 50px;
}
.addon-right .icon {
  position: absolute;
  right: 20px;
  top: 11px;
  font-size: var(--text-18);
  color: var(--gray-text);
}
.form-check-input {
  width: 23px;
  height: 23px;
  border-radius: 0px;
  border-color: var(--field-border);
}
.form-check-input:focus {
  box-shadow: none;
  border-color: var(--placeholder);
}
.form-check .form-check-input {
  margin-left: -35px;
  margin-top: 0;
}
.form-check {
  padding-left: 35px;
}
label {
  vertical-align: middle;
}
.form-check-input:checked {
  background-color: var(--secondry);
  border-color: var(--secondry);
  box-shadow: none;
}
.custom-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.custom-radio .form-check-input {
  width: 24px;
  height: 24px;
  border-color: var(--field-border);
}
.custom-radio .form-check-input:focus {
  box-shadow: none;
  border-color: var(--placeholder);
}
.custom-radio .form-check-input {
  margin-left: -35px;
  margin-top: 0;
}
.custom-radio {
  padding-left: 35px;
}
.custom-radio .form-check-input:checked[type="radio"] {
  background-image: none;
  border: 1px solid var(--primary);
  background: none;
  position: relative;
}

.custom-radio .form-check-input:checked::before {
  background-color: var(--primary);
  background-image: none;
  border: none;
  box-shadow: none;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 3px;
  top: 3px;
}
main {
  margin-top: 94px;
}
/*===================================== Commen Butons ===================================*/

.medium-btn {
  border-radius: 0;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  text-align: center;
  color: var(--white);
  padding: 13px 15px;
  min-width: 160px;
  font-weight: 600;
  line-height: 1.40022222;
}

.medium-btn:hover,
.medium-btn:focus {
  border: 1px solid var(--primary-dark);
  background-color: var(--primary-dark);
  color: var(--white);
}
.medium-btn-border {
  border-radius: 0;
  border: 1px solid var(--primary);
  background-color: var(--white);
  text-align: center;
  color: var(--primary);
  padding: 13px 15px;
  min-width: 160px;
  font-weight: 600;
  line-height: 1.40022222;
}

.medium-btn-border:hover,
.medium-btn-border:focus {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
}
.small-btn-border {
  border-radius: 0;
  border: 1px solid var(--primary);
  background-color: var(--white);
  text-align: center;
  color: var(--primary);
  padding: 11px 15px;
  min-width: 120px;
  font-weight: 600;
  line-height: 1.40022222;
}

.small-btn-border:hover,
.small-btn-border:focus {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
}
.small-btn {
  border-radius: 0;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  text-align: center;
  color: var(--white);
  padding: 11px 15px;
  min-width: 120px;
  font-weight: 600;
  line-height: 1.40022222;
}

.small-btn:hover,
.small-btn:focus {
  border: 1px solid var(--primary-dark);
  background-color: var(--primary-dark);
  color: var(--white);
}
.yt-btn {
  border-radius: 0;
  border: 1px solid var(--red);
  background-color: var(--red);
  text-align: center;
  color: var(--white);
  padding: 11px 15px;
  min-width: 120px;
  font-weight: 600;
  line-height: 1.40022222;
}

.yt-btn:hover,
.yt-btn:focus {
  border: 1px solid var(--red);
  background-color: var(--white);
  color: var(--red);
}
.reset-btn {
  border-radius: 0;
  border: 1px solid var(--secondry);
  background-color: transparent;
  text-align: center;
  color: var(--secondry);
  padding: 11px 15px;
  min-width: 120px;
  font-weight: 600;
  line-height: 1.40022222;
}

.reset-btn:hover,
.reset-btn:focus {
  border: 1px solid var(--secondry);
  background-color: var(--secondry);
  color: var(--white);
}
.clear-btn {
  border-radius: 0;
  border: none;
  background-color: transparent;
  text-align: center;
  color: var(--gray-text);
  padding: 3px 5px;
  font-size: var(--text-18);
  text-decoration: underline;
}

.clear-btn:hover,
.clear-btn:focus {
  border: none;
  background-color: transparent;
  color: var(--secondry);
  text-decoration: underline;
}

.all-product-link {
  border-top: 1px solid var(--gray-third);
  font-size: var(--text-18);
  font-weight: 700;
}
.btn .icon {
  margin-right: 7px;
}
.btn-block .btn {
  margin-right: 15px;
}
.btn-block .btn:last-child {
  margin: 0;
}

.navbar-brand {
  height: auto;
  padding-top: 2px;
  padding-bottom: 2px;
  position: relative;
  z-index: 5;
}
.navbar-brand img {
  max-width: 238px;
}
.menu.btn12 {
  display: none;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-third);
  z-index: 100;
  padding: 6px 0;
}

.navbar-expand-xl .navbar-nav .nav-link {
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 500;
}
.navbar-right {
  display: flex;
  align-items: center;
}
.navbar-expand-xl .navbar-nav .highlight-btn {
  border: 2px dotted var(--primary);
  color: var(--primary);
}
.navbar-nav .nav-link {
  color: var(--secondry);
  font-size: 16px;
}

header .dropdown-menu {
  padding: 0;
  border-radius: 10px;
  border-color: var(--gray-second);
  overflow: hidden;
}

header .dropdown-item {
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--field-border);
  color: var(--secondry);
}

header .dropdown-item:last-child {
  border-bottom: none;
}
.header-search {
  position: relative;
  margin-right: 25px;
}
.header-search .form-control {
  height: 45px;
  min-width: 350px;
}
.header-search-btn {
  position: absolute;
  right: 0;
  top: 0;
}
.mobile-search-btn {
  display: none;
  border-radius: 0px;
}
header .dropdown-item:hover,
header .dropdown-item:focus {
  background-color: var(--gray-third);
  color: var(--secondry);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .active .nav-link {
  color: var(--primary);
}

.navbar-toggler .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background-color: var(--secondry);
  margin: 5px 0;
}
.navbar-toggler {
  height: 36px;
}

.navbar-nav .header-btn {
  border-radius: 0;
  border: 1px solid var(--secondry);
  background-color: var(--secondry);
  text-align: center;
  color: var(--white);
  padding: 8px 15px 11px;
  font-size: 16px;
  min-width: 110px;
  line-height: 1.40022222;
}

.navbar-nav .header-btn:hover,
.navbar-nav .header-btn:focus {
  background-color: var(--secondry-dark);
  border-color: var(--secondry-dark);
  color: var(--white);
  box-shadow: none;
}

.nav-item {
  position: relative;
}
header .dropdown-toggle::after {
  border: none;
  background-image: url(../images/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center center;
  width: 14px;
  height: 14px;
  background-size: 100%;
  vertical-align: middle;
  margin-top: -2px;
}
.profile-pic {
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 50%;
}
.profile-pic img {
  border-radius: 50%;
}
header .profile-dropdown .dropdown-toggle::after {
  display: none;
}

header .dropdown-menu {
  border-radius: 0;
  min-width: 215px;
}

header .profile-dropdown .dropdown-item {
  border-bottom: 1px solid var(--gray-third);
  padding: 18px 15px;
}
header .profile-dropdown .dropdown-item.logout-btn {
  border-bottom: none;
  color: var(--red);
  padding: 18px 15px;
}
header .profile-dropdown .dropdown-item.logout-btn:hover,
header .profile-dropdown .dropdown-item.logout-btn:focus {
  color: var(--red);
  background-color: transparent;
}
header .profile-dropdown .dropdown-item.logout-btn .icon {
  color: var(--red);
}
header .profile-dropdown .dropdown-item .icon {
  margin-right: 5px;
  font-size: var(--text-18);
  color: var(--gray-text);
}
.navbar-expand-xl .navbar-nav .product-menu .dropdown-menu {
  width: 100%;
  max-width: 1625px;
  border-radius: 0px;
  top: 94px;
  padding: 15px;
  border: none;
  box-shadow: 0 9px 10px rgba(0, 0, 0, 0.15);
  position: fixed;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-top: 1px solid var(--gray-third);
}
.close-menu {
  display: none;
}
.sub-menu li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}
.sub-menu li::after {
  position: absolute;
  content: "";
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background-color: var(--primary);
}
.sub-menu li a {
  color: var(--base);
}
.sub-menu li a:hover,
.sub-menu li a:focus {
  color: var(--primary);
}
.nav-menu h3 {
  font-size: var(--text-18);
  font-weight: 500;
  margin: 0 0 15px;
}
.cart-btn {
  position: relative;
}
.cart-btn .badge {
  position: absolute;
  right: 14px;
  font-size: var(--text-14);
  top: 3px;
  background-color: var(--primary);
  padding: 3px 6px;
}

.common-section {
  padding: 100px 0;
}
.note-btn {
  position: relative;
}
.note-btn .badge-note {
  position: absolute;
  right: 18px;
  display: inline-block;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--green);
}
.navbar-expand-xl .navbar-nav .nav-link.note-btn,
.navbar-expand-xl .navbar-nav .nav-link.cart-btn {
  font-size: var(--text-24);
}

.page-title {
  margin-bottom: 30px;
}
.page-title .title {
  font-size: var(--text-40);
  font-weight: 500;
  padding-bottom: 10px;
  position: relative;
}
.page-title .title::after {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--primary);
  content: "";
}
.sub-titel {
  font-size: var(--text-24);
  font-weight: 500;
  margin: 0 0 20px;
}
.banner-item {
  position: relative;
  min-height: 800px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.banner-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 30%,
    rgba(0, 0, 0, 0.45) 59%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}
.banner-item .container {
  position: relative;
  z-index: 1;
}
.banner-content {
  width: 100%;
  max-width: 650px;
  color: var(--white);
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.2);
}
.banner-content h1 {
  font-size: var(--text-56);
  font-weight: 500;
  margin: 0 0 25px;
}
.banner-content p {
  font-size: var(--text-18);
  font-weight: 400;
  margin: 0 0 25px;
}
.banner-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container {
  max-width: 1650px;
  margin: 0 auto;
  width: 100%;
}
.banner-content .medium-btn {
  padding: 16px 25px;
}
.banner-slider .slick-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  z-index: 5;
}
.banner-slider .slick-prev {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  z-index: 5;
}
.categories-cards .card {
  border-radius: 0px;
  border-color: var(--gray-third);
  color: var(--secondry);
}
.categories-cards .card-title {
  font-size: var(--text-26);
  font-weight: 500;
}
.categories-cards .card-title a {
  color: var(--secondry);
}
.categories-cards .card-footer h4 {
  font-size: var(--text-18);
  font-weight: 400;
  margin: 0;
}
.categories-cards .card-footer h4 span {
  color: var(--primary);
  font-weight: 500;
}
.categories-cards .card-footer {
  background-color: var(--white);
  border-top-color: transparent;
  padding-top: 5px;
  padding-bottom: 15px;
}
.categories-cards .card-img-top {
  border-bottom: 1px solid var(--gray-third);
}
.categories-cards .card-text {
  color: var(--gray-text);
}
.total-product {
  font-weight: 700;
  color: var(--secondry);
  display: inline-block;
  margin-left: 5px;
}
.small-btn-border:hover .total-product,
.small-btn-border:focus .total-product {
  color: var(--white);
}

.common-card {
  border-radius: 0px;
  border-color: transparent;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: var(--secondry);
}
.common-card .card-title {
  font-size: var(--text-20);
  font-weight: 500;
}
.common-card .card-title a {
  color: var(--secondry);
}
.common-card .card-footer h4 {
  font-size: var(--text-20);
  font-weight: 500;
  margin: 0;
}
.common-card .card-footer h4 .discount {
  color: var(--gray-text);
  display: inline-block;
  margin-right: 5px;
  font-size: var(--text-18);
}
.common-card .card-footer {
  background-color: var(--white);
  border-top-color: var(--gray-third);
  padding-top: 15px;
  padding-bottom: 15px;
}
.common-card .card-img-top {
  border-bottom: 1px solid var(--gray-third);
}
.common-card .card-text {
  color: var(--gray-text);
}
.ellipsis-text {
  line-height: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.common-review {
  display: flex;
  gap: 4px;
}
.common-review img {
  width: 20px;
  height: auto;
}
.common-review span,
.common-review a {
  font-size: var(--text-20);
  color: var(--star);
}
.shop-link {
  font-size: var(--text-18);
  font-weight: 500;
  display: inline-block;
  text-decoration: underline;
}
.shop-link .icon {
  margin-right: 5px;
}
.process-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-image: url(../images/process-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
}
.process-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}

.process-section .container {
  position: relative;
  z-index: 2;
}
.process-block {
  position: relative;
  text-align: center;
}
.process-block p {
  margin: 0;
}
.process-block h3 {
  font-size: var(--text-24);
  font-weight: 500;
  margin: 0 0 10px;
}
.process-icon {
  width: 100px;
  height: 100px;
  background-color: var(--primary);
  color: var(--secondry-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 25px;
  box-shadow: 8px 9px 10px rgba(255, 255, 255, 0.2);
}
.process-icon img {
  max-width: 60px;
  filter: brightness(25);
}
.inner-banner {
  padding: 43px 0 80px;
  background-color: #012d4f;
  color: var(--white);
  text-align: center;
}
.inner-banner .page-title {
  font-size: 60px;
}

/* Footer Start  */
footer {
  background-color: var(--white);
  padding: 35px 0 0;
  border-top: 1px solid var(--gray-third);
}
.footer-block {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1.5rem;
  text-align: left;
}

.footer-block .footer-icon {
  min-width: 35px;
}
.footer-block h3 {
  color: var(--gray-text);
  margin: 0 0 7px;
  font-size: var(--text-14);
  font-weight: 400;
}
.footer-block p {
  color: var(--secondry);
  margin: 0px;
  font-size: var(--text-14);
  font-weight: 500;
}
.footer-block p a {
  color: var(--secondry);
}
.footer-address li {
  margin-bottom: 20px;
  display: flex;
  align-items: start;
  gap: 15px;
}
.footer-address li img {
  filter: brightness(50);
}
.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: start;
}
.footer-links li a {
  color: var(--light-gray-text);
  font-size: var(--text-14);
}
.footer-links li a:hover,
.footer-links li a:focus {
  color: var(--secondry);
}
footer h3 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 30px;
}
.footer-address li p {
  margin-bottom: 0;
}
.footer-social {
  display: flex;
  gap: 20px;
  align-items: self-start;
  text-align: left;
}
.social-icon:hover,
.social-icon:focus {
  background-color: var(--white);
}
.social-icon img {
  height: 20px;
}
.footer-content {
  border-top: 1px solid var(--gray-third);
  padding: 20px 0;
  margin-top: 35px;
}
.footer-right {
  text-align: right;
}
.copyright {
  margin: 0;
  font-size: var(--text-14);
  color: var(--light-gray-text);
  text-align: right;
}

/* Testimonials Start */
.testimonial-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-image: url(../images/testimonial-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
}
.testimonial-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
}

.testimonial-item h2 {
  font-size: var(--text-30);
  font-weight: 500;
  margin: 20px 0px 0;
}
.testimonial-item h4 {
  font-size: var(--text-20);
  font-weight: 400;
  margin: 10px 0px 0;
}
.testimonial-item p {
  font-weight: 400;
  margin: 20px 0 0;
}

.testimonial-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.testimonial-section .slick-dots {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.testimonial-section .slick-dots li {
  width: 15px;
  height: 15px;
  border-radius: 0;
  border: 1px solid var(--white);
  border-radius: 50%;
}
.testimonial-section .slick-dots li.slick-active {
  background-color: var(--white);
  width: 35px;
  border-radius: var(--radius-10);
}

.testimonial-section .slick-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  z-index: 5;
}
.testimonial-section .slick-prev {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  z-index: 5;
}

/* Account Pages Start  */

.account-pages {
  min-height: calc(100vh - 192px);
  position: relative;
}
.account-main {
  position: relative;
  margin: 40px auto;
  padding: 35px 45px;
  background-color: var(--white);
  max-width: 1200px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
}
.account-left {
  background-color: var(--first-gray);
}
.account-right {
  background-color: var(--white);
  padding-top: 30px;
  padding-bottom: 30px;
}
.account-img {
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
.account-form {
  width: 100%;
  margin: 0 auto;
}
.captcha-img {
  max-width: 300px;
}
.account-form .medium-btn {
  padding-top: 16px;
  padding-bottom: 16px;
}
.account-form h5 {
  font-weight: 400;
  text-align: center;
  margin: 30px 0 0;
  font-size: var(--base);
}
.account-form h5 a {
  font-weight: 700;
}

/* Search Start */
.filter-main {
  background-color: var(--filter-bg);
  padding: 20px 0 10px;
  margin: 0px 0 30px;
  position: sticky;
  left: 0;
  top: 94px;
  z-index: 2;
  border-bottom: 1px solid var(--gray-third);
}
.filter-main .form-control {
  height: 50px;
}
.filter-sort {
  display: flex;
  justify-content: end;
  gap: 20px;
}
.filter-sort .form-control {
  height: 40px;
  font-size: var(--text-14);
  padding-top: 5px;
  padding-bottom: 5px;
  max-width: 250px;
}
.filter-sort .filter-btn {
  display: none;
}
.sort-block {
  margin-bottom: 15px;
}
.filter-main .sub-titel {
  display: none;
}
.category-dropdown .form-control {
  background-color: var(--white);
  border: 1px solid var(--field-border);
  border-radius: 0px;
  box-shadow: none;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-height: 50px;
  height: auto;
  color: var(--secondry);
  padding: 10px 20px;
  font-weight: 400;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  text-align: left;
}
.category-dropdown .dropdown-menu {
  padding: 20px 15px;
  min-width: 100%;
  border-radius: 0px;
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
}
.category-dropdown .dropdown-menu .dropdown-item {
  margin-bottom: 15px;
  padding: 0;
  background-color: transparent;
}
.category-dropdown .dropdown-menu .dropdown-item:last-child {
  margin-bottom: 0;
}
.filter-main .common-review {
  gap: 10px;
  text-align: center;
  justify-content: center;
}
.filter-main .common-review span {
  font-size: var(--text-20);
}
.filter-main h4 {
  font-size: var(--base);
  font-weight: 500;
  margin: 0;
}
.range-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.range-content h5 {
  font-size: var(--base);
  font-weight: 700;
  margin: 0;
}
.range-content label {
  margin-bottom: 0;
}
.category-dropdown {
  min-width: 270px;
}

.common-pagination {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.common-pagination .pagination {
  display: flex;
  justify-content: end;
}
.common-pagination .pagination .page-link {
  margin: 0 3px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px;
  border-color: var(--gray-third);
  background-color: var(--white);
  color: var(--secondry);
}
.common-pagination .pagination .page-item.disabled .page-link {
  color: var(--gray-text);
}
.common-pagination .pagination .page-item.active .page-link {
  background-color: var(--secondry);
  color: var(--white);
}
/* --Detail Page Start */
.detail-page {
  padding: 50px 0;
}
.slider-item-lg {
  padding: 15px;
  background-color: var(--white);
  border: 1px solid var(--gray-third);
  text-align: center;
}
.slider-item-lg img {
  margin: 0 auto;
}
.slider.slider-thumb .slick-slide {
  margin: 0 10px 0 0;
  border: 1px solid var(--gray-third);
  padding: 7px;
  background-color: var(--white);
}
.slider-content .slick-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  z-index: 5;
}
.slider-content .slick-prev {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  z-index: 5;
}
.slider.slider-thumb .slick-slide.slick-current.slick-active {
  border-color: var(--primary);
}
.detail-row {
  border-bottom: 1px solid var(--gray-third);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.detail-row h1 {
  font-size: var(--text-24);
  margin: 0;
  font-weight: 500;
}
.brand-review {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.brand-review h4 {
  font-size: var(--text-14);
  margin: 0;
  color: var(--gray-text);
}
.price-policy h3 {
  font-size: var(--text-26);
  font-weight: 500;
  margin: 0;
}
.price-policy h3 .discount {
  color: var(--gray-text);
  display: inline-block;
  margin-right: 5px;
  font-size: var(--text-24);
}
.price-policy h5 {
  font-size: var(--text-14);
  font-weight: 400;
  margin: 5px 0 0;
  color: var(--gray-text);
}
.price-policy {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.policy-note {
  display: flex;
  align-items: center;
  gap: 7px;
}
.policy-note .icon {
  width: 50px;
  height: 50px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 5px;
}
.policy-note p {
  font-weight: 400;
  margin: 0;
}

.product-info {
  margin-top: 25px;
}

.product-info h4 {
  font-size: var(--base);
  margin: 0 0 10px;
}
.product-info p {
  font-size: var(--base);
}
.number-block {
  position: relative;
  max-width: 200px;
}
.number-block .form-control {
  text-align: center;
}
.number-block .number-btn {
  position: absolute;
  top: 0;
  width: 55px;
  height: 55px;
  background-color: var(--secondry);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--text-18);
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
.number-block .minus-btn {
  left: 0;
}
.number-block .plus-btn {
  right: 0;
}
.detail-btns p {
  font-size: var(--text-14);
  margin: 10px 0 0;
  text-align: center;
}
.common-tab {
  margin-top: 35px;
}
.common-tab .nav-item button.active {
  background-color: transparent;
  color: var(--primary) !important;
  font-weight: 500;
}
.common-tab .nav-tab {
  border-bottom: 1px solid var(--gray-third);
}
.common-tab .nav-item button {
  color: var(--secondry);
  font-size: var(--text-18);
}
.common-tab .nav-item button.active::after {
  content: "";
  border-bottom: 4px solid var(--primary);
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
  border-radius: 5px 5px 0 0;
}
.common-tab .tab-content {
  border: 1px solid var(--gray-third);
  background-color: var(--white);
  margin-top: 15px;
}
.about-tab h1 {
  font-size: var(--text-24);
  font-weight: 500;
  margin: 0 0 15px;
}
.about-tab h2 {
  font-size: var(--text-20);
  font-weight: 500;
  margin: 0 0 15px;
}
.about-tab h3 {
  font-size: var(--text-18);
  font-weight: 500;
  margin: 0 0 15px;
}
.about-tab {
  font-size: var(--text-14);
}
.about-tab p {
  margin: 0 0 15px;
}
.about-tab ul {
  list-style-type: disc;
  margin: 20px 0px 15px 15px;
}
.about-tab ul li {
  margin-bottom: 10px;
}
.review-left {
  border-bottom: 1px solid var(--gray-third);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.review-left:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.reviewinfo-header {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.reviewinfo-header .reviewaverage {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.reviewinfo-header .reviewaverage .average {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.reviewinfo-header .reviewaverage .average-title {
  font-style: normal;
  font-size: var(--text-30);
  font-weight: 600;
}
.reviewinfo-header .reviewaverage .average-from {
  bottom: auto;
  font-size: var(--text-20);
  font-weight: 600;
  color: var(--gray-text);
}
.reviewcount-text {
  margin: 0;
}
.reviewcount-text .count {
  font-weight: 600;
}
.reviews-progress {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.reviews-progress .reviewcounter {
  width: 3rem;
  font-size: var(--text-14);
}
.reviews-progress .progress {
  width: calc(100% - 3.5rem);
  height: 0.625rem;
  border-radius: 0px;
  background: var(--gray-second);
}
.reviews-progress .progress-bar {
  background: var(--star);
  border-radius: 0px;
}
.verifybadge-success {
  background-color: var(--white);
  color: var(--green);
  border: 1px solid var(--green);
  display: inline-block;
  padding: 3px 8px;
  font-size: var(--text-14);
}
.review-cell {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--gray-third);
}
.review-cell h4 {
  margin: 0;
  font-weight: 400;
  font-size: var(--base);
}
.review-cell h3 {
  margin: 15px 0 0px;
  font-weight: 600;
  font-size: var(--text-18);
}
.review-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}
.review-disc {
  font-size: var(--text-14);
}
.review-disc p {
  margin: 10px 0 0;
}
.review-top {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.review-top h5 {
  font-size: var(--text-14);
  font-weight: 400;
  margin: 0;
  color: var(--gray-text);
}
.common-card-bordered {
  box-shadow: none;
  border: 1px solid var(--gray-third);
}
.similar-product .slick-slide {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}
.similar-product {
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
}
.similar-product .slick-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  z-index: 5;
  right: 0;
}
.similar-product .slick-prev {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  z-index: 5;
  left: 0;
}
.related-block {
  padding-top: 50px;
}
.video-block {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
  margin: 0 0 15px;
}
.video-block h3 {
  font-size: var(--text-18);
  font-weight: 500;
  margin: 0;
}
.video-block h3 span {
  color: var(--gray-text);
}
.video-block .yt-btn .icon {
  font-size: var(--text-18);
  margin-right: 5px;
}
.detail-btns {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Profile & Address Page Start */
.profile-main {
  position: relative;
  margin: 40px auto;
}
.inner-content {
  position: relative;
  margin: 40px auto;
  padding: 35px 35px;
  background-color: var(--white);
  max-width: 1200px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
}
.change-password-form {
  border-top: 1px solid var(--gray-third);
  padding-top: 20px;
  margin-top: 20px;
}
.address-radio .form-check-input:checked[type="radio"] + .form-check-label {
  background-color: var(--red);
}

/*Card Button CSS*/
.address-block .content_head {
  color: var(--secondry);
  font-size: var(--text-18);
  font-weight: 600;
}
.address-block .content_head_second {
  color: var(--secondry);
  font-size: var(--text-18);
  font-weight: 400;
}

.address-block .content_sub p {
  font-size: var(--text-14);
}
.address-block .content_sub p:last-child {
  margin-bottom: 0;
}
.action-btns {
  display: flex;
  gap: 20px;
  align-items: center;
}
.card-radio-btn .content_sub p:last-child {
  margin-bottom: 0;
}

.address-block .card {
  width: 100%;
  height: 100%;
  margin: 0;
  justify-content: start;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 2px solid transparent;

  -webkit-box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0px;
}

.card-input-element + .card:hover {
  cursor: pointer;
}

.address-block {
  position: relative;
  height: 100%;
}
.action-btn {
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  gap: 5px;
}
.action-btn-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.address-block .card-footer {
  background-color: var(--white);
  border-top-color: var(--gray-third);
  padding-top: 12px;
  padding-bottom: 12px;
}
.edit-btn {
  color: var(--secondry);
}
.delete-btn {
  color: var(--red);
}
.add-address-btn {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.add-address-btn h4 {
  font-size: var(--text-40);
  color: var(--gray-text);
  margin: 0 0 5px;
}
.add-address-btn p {
  margin: 0;
  font-size: var(--text-20);
  font-weight: 600;
  color: var(--secondry);
}
.default-btn {
  color: var(--gray-text);
}
.selected-address {
  display: inline-block;
  color: var(--primary);
}

/* Notifications Start */
.notifications-block {
  padding: 0px 0 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--gray-third);
}
.notifications-block.unread .notifications-icon,
.notifications-block.unread .notifications-left h4,
.notifications-block.unread .notifications-left p,
.notifications-block.unread .notifications-right .note-time {
  opacity: 0.3;
}
.notifications-block:last-child {
  border-bottom: none;
}
.notifications-left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.notifications-icon {
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--gray-third);
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-20);
  color: var(--gray-text);
}
.notifications-left p:last-child {
  margin-bottom: 0;
}
.notifications-left h4 {
  font-size: var(--text-18);
  margin: 0 0 5px;
  font-weight: 400;
}
.notifications-right {
  text-align: center;
  min-width: 80px;
}
.notifications-right .note-time {
  white-space: nowrap;
  font-size: var(--text-14);
  color: var(--gray-text);
  margin: 0 0 5px;
}

/* Modal */
.common-modal .modal-header {
  padding: 15px 25px;
}
.common-modal .modal-content {
  border-radius: 0px;
}
.common-modal .modal-title {
  font-size: var(--text-24);
}
.common-modal .btn-close {
  opacity: 1;
  font-size: var(--text-24);
  box-shadow: none;
  outline: navajowhite;
  background-image: none;
  color: var(--gray-text);
}
.common-modal .btn-close:hover,
.common-modal .btn-close:focus {
  color: var(--secondry);
}
.common-modal .modal-body,
.common-modal .modal-footer {
  padding: 20px 25px;
}
.common-modal-sm .modal-body,
.common-modal-sm .modal-footer {
  padding: 15px 20px;
}
.common-modal-sm .modal-header {
  padding: 15px 20px;
}
/* Cart */
.cart-checkout {
  margin: 40px auto;
}
.cart-item {
  border-bottom: 1px solid var(--gray-third);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.cart-left {
  display: flex;
  gap: 15px;
  align-items: start;
}
.cart-thumb {
  width: 100px;
  height: 100px;
  min-width: 100px;
  min-height: 100px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  display: block;
  overflow: hidden;
}
.cart-content h3 {
  font-size: var(--text-20);
  margin: 0 0 3px;
}
.cart-left p {
  margin-top: 5px;
  margin-bottom: 0;
}
.cart-list {
  font-weight: 400;
  font-size: var(--base);
  color: var(--gray-text);
}
.cart-list span {
  color: var(--secondry);
}
.cart-price {
  font-size: var(--text-20);
  font-weight: 500;
  margin: 0;
  text-align: right;
}
.cart-price .icon {
  color: var(--gray-text);
  display: inline-block;
  margin-right: 5px;
  font-size: var(--text-18);
}

.cart-item .number-block .form-control {
  height: 46px;
  border-color: var(--secondry);
}
.cart-item .number-block .number-btn {
  width: 46px;
  height: 46px;
}
.cart-delete-btn {
  color: var(--white);
  border: none;
  outline: none;
  box-shadow: none;
  background-color: var(--red);
  font-size: var(--text-20);
  padding: 0;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
}
.cart-action {
  display: flex;
  gap: 0px;
  align-items: center;
}

.cart-total {
  font-size: var(--text-20);
  text-align: right;
  font-weight: 600;
}
.cart-total .icon {
  color: var(--gray-text);
}
.cart-total .total-lebal {
  font-weight: 400;
  display: inline-block;
  margin-right: 10px;
}
.cart-checkout .btn-block {
  padding-top: 15px;
  margin-top: 15px;
  text-align: right;
}

/*Checkout Page Start */
.checkout-main {
  position: relative;
  margin: 40px auto;
}
.checkout-left {
  padding: 30px;
  background-color: var(--white);
  border: 1px solid var(--gray-third);
}

.checkout-left .address-block .card {
  box-shadow: none;
  padding: 0;
}
.checkout-left .card-body {
  padding: 0;
}
.checkout-address-select {
  border-left: 1px solid var(--gray-third);
  min-height: 100%;
  padding-left: 30px;
  display: flex;
  justify-content: end;
}

.address-dropdown .dropdown-toggle {
  background-color: var(--white);
  border: 1px solid var(--secondry);
  color: var(--secondry);
  border-radius: 0px;
  padding: 12px 30px;
}
.dropdown.address-dropdown {
  width: 90%;
}
.address-dropdown .dropdown-toggle::after {
  background-image: url(../images/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center center;
  width: 18px;
  height: 10px;
  border: none;
  vertical-align: 0.1em;
}
.address-dropdown .dropdown-menu {
  min-width: 100%;
  border-radius: 0px;
  border: 1px solid var(--gray-third);
  max-width: 290px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.address-dropdown .address-cell {
  border-bottom: 1px solid var(--gray-third);
  padding: 10px 15px 7px;
}
.address-dropdown li:last-child .address-cell {
  border-bottom: none;
}
.address-dropdown .address-cell h3 {
  font-size: var(--base);
  font-weight: 600;
  margin: 0 0 5px;
}
.address-dropdown .address-cell h4 {
  font-size: var(--text-14);
  font-weight: 400;
  margin: 0 0 5px;
}
.address-dropdown .address-cell p {
  color: var(--gray-text);
  margin: 0 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.payment-block {
  border-bottom: 1px solid var(--gray-third);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.verify-note {
  font-size: var(--text-14);
  margin: 15px 0 0;
  font-weight: 400;
  color: var(--gray-text);
}
.verify-note .icon {
  margin-right: 5px;
}
.checkout-right {
  padding: 20px;
  background-color: var(--white);
  border: 1px solid var(--gray-third);
  position: sticky;
  right: 0;
  top: 130px;
}
.promocode {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.promocode .small-btn-border {
  padding: 6px 10px;
  min-width: 100px;
}
.code-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.code-content h4 {
  font-size: var(--base);
  font-weight: 500;
  margin: 0;
}
.code-content .icon {
  font-size: var(--text-24);
  color: var(--gray-text);
}
.payment-detail li {
  margin-bottom: 15px;
}
.payment-detail li h5 {
  margin: 0;
  font-size: var(--base);
  color: var(--secondry);
  font-weight: 500;
}
.payment-detail li p {
  margin: 0;
  font-size: var(--base);
  color: var(--secondry);
  text-align: right;
}
.payment-detail li p .currency {
  color: var(--gray-text);
  display: inline-block;
  margin-right: 5px;
  font-size: var(--base);
}
.confirm-note {
  font-size: var(--text-14);
  margin: 15px 0 0;
}
.total-count {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 15px;
  padding: 0px 0 30px;
}
.total-count h2,
.total-count h3 {
  font-size: var(--text-18);
  font-weight: 700;
  margin: 0;
}
.total-count h3 {
  font-weight: 500;
}
.total-count .currency {
  color: var(--gray-text);
  display: inline-block;
  margin-right: 5px;
}
.checkout-left .cart-row {
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--gray-third);
}
.checkout-left .cart-content h3 {
  font-size: var(--text-18);
}
.checkout-left .cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.checkout-product-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}
.checkout-left .cart-left {
  align-items: center;
}
.checkout-qty {
  text-align: right;
  margin-bottom: 8px;
}
.checkout-left .cart-thumb {
  min-width: 80px;
  min-height: 80px;
  width: 80px;
  height: 80px;
}
.coupon-field {
  position: relative;
  margin-bottom: 10px;
}
.coupon-field .coupon-btn {
  position: absolute;
  top: 9px;
  right: 5px;
  color: var(--primary);
  font-weight: 500;
}
.coupon-cell:last-child .coupon-item {
  border-bottom: none;
}
.coupon-item {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--gray-third);
}
.coupon-item:hover {
  background-color: var(--gray-fourth);
}
.coupon-item h3 {
  display: inline-block;
  border: 1px dashed var(--gray-second);
  padding: 7px 10px;
  margin: 0;
  font-weight: 500;
  color: var(--secondry);
  font-size: var(--text-18);
  text-transform: uppercase;
  min-width: 150px;
  text-align: center;
}
.coupon-top .price-note {
  margin: 0;
  font-weight: 400;
  font-size: var(--text-14);
  color: var(--secondry);
}
.coupon-top .price-note .icon {
  margin-right: 2px;
  color: var(--gray-text);
}
.coupon-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.coupon-top .expired-date {
  margin: 3px 0 0;
  font-weight: 400;
  font-size: var(--text-14);
  color: var(--gray-text);
}
.delevery-form {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--gray-third);
}

/* Connectiong payment Page */
.payment-connect {
  position: fixed;
  left: 0;
  top: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 999;
  display: flex;
}
.connect-box {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 50px 30px;
  background-color: var(--white);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.connect-box .payment-logo {
  text-align: center;
  margin: 0 auto;
  display: block;
  max-width: 150px;
}
.connect-box h3 {
  font-size: var(--text-18);
  font-weight: 400;
  margin: 15px 0 0;
}
.connect-box .loading-img svg {
  margin: 0;
  width: 150px;
  margin: 0 auto;
}
.connect-box h2 {
  font-size: var(--text-18);
  font-weight: 600;
  margin: 15px 0 0;
}
.coupon-code {
  display: inline-block;
  border: 1px dashed var(--gray-second);
  padding: 7px 10px;
  margin: 0;
  font-weight: 500;
  color: var(--secondry);
  font-size: var(--text-18);
  text-transform: uppercase;
  min-width: 150px;
  text-align: center;
}

/* Order Confirm */
.confirm-img {
  max-width: 500px;
  margin: 0 auto 25px;
  width: 100%;
}
.confirm-block {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--gray-third);
  display: flex;
  gap: 25px;
  justify-content: space-between;
}
.confirm-block:last-child {
  margin-bottom: 25px;
}
.confirm-label {
  margin: 0;
  font-size: var(--base);
  color: var(--gray-text);
  font-weight: 400;
}
.confirm-value {
  color: var(--secondry);
  margin: 0;
  display: block;
  font-size: var(--base);
  font-weight: 500;
  width: 75%;
  text-align: left;
}
.confirm-value .icon {
  color: var(--gray-text);
}

/* My Orders */
.order-search {
  position: relative;
}
.order-filter {
  margin-bottom: 20px;
}
.order-filter .form-control {
  height: 45px;
}
.order-search-btn {
  position: absolute;
  right: 0;
  top: 0;
}
.order-tab .tab-content {
  border: none;
  background-color: transparent;
  padding: 0;
}
.order-cell {
  margin: 0px 0 25px;
  background-color: var(--gray-fifth);
}
.order-top {
  padding: 15px;
}
.order-detail {
  width: 100%;
}
.order-detail-left {
  display: flex;
  align-items: start;
  gap: 15px;
  padding: 15px;
  background-color: var(--white);
}
.order-detail-info {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--gray-third);
}
.order-detail-info:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.order-block {
  display: flex;
  gap: 25px;
}
.order-block .confirm-value {
  width: auto;
}

.success-status {
  color: var(--green);
}
.cancel-status {
  color: var(--red);
}
.order-detail-info .confirm-label {
  width: 30%;
}
.status-btn {
  display: inline-block;
  font-size: var(--text-18);
}
.status-btn .icon {
  margin-right: 5px;
  font-size: var(--text-20);
}
.order-list-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order-cell .btn-block {
  margin-top: 15px;
}
.status-btn.placed {
  color: var(--blue);
}
.status-btn.shipped {
  color: var(--orange);
}
.status-btn.delivered {
  color: var(--green);
}
.status-btn.shipped {
  color: var(--orange);
}
.status-btn.cancelled {
  color: var(--red);
}
.status-btn.delivered .icon {
  font-size: var(--text-24);
}
.order-left h5 {
  font-size: var(--base);
  font-weight: 400;
  margin: 10px 0 0;
  color: var(--gray-text);
  text-align: center;
}
.order-left h5 span {
  color: var(--secondry);
}

/* Order Details */
.tracking-box {
  background-color: var(--gray-fifth);
  margin-bottom: 20px;
  padding: 20px 15px;
}

.order-tracking {
  text-align: center;
  width: 33.33%;
  position: relative;
  display: block;
}
.order-tracking .is-complete {
  display: block;
  position: relative;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  border: 0px solid var(--green);
  background-color: var(--gray-second);
  margin: 0 auto;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
  z-index: 2;
}
.order-tracking .is-complete:after {
  display: block;
  position: absolute;
  content: "";
  height: 14px;
  width: 7px;
  top: -2px;
  bottom: 0;
  left: 5px;
  margin: auto 0;
  border: 0px solid #afafaf;
  border-width: 0px 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}
.order-tracking.completed .is-complete {
  border-color: var(--green-track);
  border-width: 0px;
  background-color: var(--green-track);
}
.order-tracking.completed .is-complete:after {
  border-color: var(--white);
  border-width: 0px 3px 3px 0;
  width: 7px;
  left: 11px;
  opacity: 1;
}
.order-tracking p {
  color: var(--gray-text);
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 20px;
}
.order-tracking p span {
  font-size: 14px;
}
.order-tracking.completed p {
  color: var(--black);
}
.order-tracking::before {
  content: "";
  display: block;
  height: 3px;
  width: calc(100% - 40px);
  background-color: var(--gray-second);
  top: 13px;
  position: absolute;
  left: calc(-50% + 20px);
  z-index: 0;
}
.order-tracking:first-child:before {
  display: none;
}
.order-tracking.completed:before {
  background-color: var(--green-track);
}

.order-address h3 {
  color: var(--secondry);
  font-size: var(--text-18);
  font-weight: 500;
}
.order-address h4 {
  color: var(--secondry);
  font-size: var(--base);
  font-weight: 400;
}

.order-address p {
  font-size: var(--text-14);
  /* white-space: preserve-breaks; */
  color: var(--gray-text);
}
.order-address p:last-child {
  margin-bottom: 0;
}
.order-detail-main .order-top {
  background-color: var(--gray-fifth);
}
.order-detail-top {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  margin-bottom: 35px;
  border: 1px solid var(--primary);
  box-shadow: 5px 9px 10px -5px rgba(0, 0, 0, 0.1);
}
.order-info {
  display: flex;
  gap: 10px;
}
.order-info .confirm-value {
  width: auto;
}
.order-detail-main .cart-row {
  border-top: 1px solid var(--gray-second);
  padding-top: 30px;
  margin-top: 30px;
}
.od-right {
  display: flex;
  justify-content: end;
  flex-direction: column;
}
.od-right .btn {
  margin-top: 10px;
  min-width: inherit;
}

.contact-block {
  display: flex;
  align-items: self-start;
  justify-content: start;
  gap: 1.5rem;
  text-align: left;
  margin-bottom: 20px;
}
.contact-left {
  background-color: var(--gray-fifth);
  height: 100%;
  padding: 20px;
}

.contact-block .contact-icon {
  min-width: 60px;
  min-height: 60px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-third);
}
.contact-block .contact-icon img {
  min-width: 35px;
}
.contact-block h3 {
  color: var(--gray-text);
  margin: 0 0 4px;
  font-weight: 400;
  font-size: var(--base);
}
.contact-block p {
  color: var(--secondry);
  margin: 0px;
  font-weight: 500;
}
.contact-block p a {
  color: var(--secondry);
}
.map-frame iframe {
  width: 100%;
  height: 250px;
  border: none;
}

.modal.drawer {
  display: flex !important;
  pointer-events: none;
}
.modal.drawer * {
  pointer-events: none;
}
.modal.drawer .modal-dialog {
  margin: 0px;
  display: flex;
  flex: auto;
  transform: translate(25%, 0);
}
.modal.drawer .modal-dialog .modal-content {
  border: none;
  border-radius: 0px;
}
.modal.drawer .modal-dialog .modal-content .modal-body {
  overflow: auto;
}
.modal.drawer.show {
  pointer-events: auto;
}
.modal.drawer.show * {
  pointer-events: auto;
}
.modal.drawer.show .modal-dialog {
  transform: translate(0, 0);
}
.modal.drawer.right-align {
  flex-direction: row-reverse;
}
.modal.drawer.left-align:not(.show) .modal-dialog {
  transform: translate(-25%, 0);
}
.modal.drawer .cart-content h3 {
  font-size: var(--base);
  margin-bottom: 10px;
}
.modal.drawer .cart-price,
.modal.drawer .cart-price .icon {
  font-size: var(--base);
  margin-left: 0;
}
.modal.drawer .cart-item .number-block .form-control {
  height: 36px;
}
.modal.drawer .cart-item .number-block .number-btn,
.modal.drawer .cart-delete-btn {
  height: 36px;
  width: 36px;
  min-height: 36px;
  min-width: 36px;
  font-size: var(--text-18);
}

.modal.drawer .cart-thumb {
  height: 75px;
  width: 75px;
  min-height: 75px;
  min-width: 75px;
}
.modal-cart-bottom {
  width: 100%;
}
.modal-cart-bottom .cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-cart-bottom p {
  font-size: var(--text-14);
  color: var(--gray-text);
}
.modal.drawer .cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.mrp {
  font-size: var(--text-12);
  color: var(--gray-text);
  font-weight: 400;
}
.mrp span {
  text-decoration: line-through;
}
.value-break {
  word-break: break-all;
}
.avl-qty {
  color: var(--gray-text);
}
.avl-qty span {
  color: var(--secondry-dark);
}
