@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&amp;display=swap');
:root {
  /* Core Colors */
  --white-full: #ffffff;
  --black-full: #000000;

  /* Backgrounds */
  --snow: #F4F1EC;          /* Soft cream background */
  --sec-bg: #FFF7F0;        /* Light warm background */
  --sec-bg-2: #FDE8DA;      /* Soft peach tint */

  /* Text Colors */
  --dark: #5A1E25;          /* Deep maroon text */
  --dark-p: #8C6B6F;        /* Muted rose paragraph */

  /* Brand Primary Colors */
  --primary: #8B1E2D;       /* Royal Maroon */
  --secondary: #E06A2C;     /* Saffron Orange */
  --accent: #F4A641;        /* Golden Amber */
  --pri-light: #C03A4A;     /* Rani Pink Accent */

  /* Gradients */
  --gradient-main: linear-gradient(135deg, #8B1E2D, #E06A2C);
  --gradient-royal: linear-gradient(90deg, #8B1E2D, #E06A2C, #F4A641);

  /* Shadows (Warmer Tone) */
  --shadow-sm: rgba(139, 30, 45, 0.12) 0px 2px 8px 0px;
  --shadow-lg: rgba(139, 30, 45, 0.18) 0px 4px 12px -2px,
               rgba(224, 106, 44, 0.08) 0px 0px 0px 1px;
  --shadow-border: rgba(139, 30, 45, 0.05) 0px 1px 3px 0px,
                   rgba(224, 106, 44, 0.12) 0px 0px 0px 1px;

  --shadow-premium: 0 4px 12px rgba(139,30,45,0.15),
                    0 2px 6px rgba(224,106,44,0.08);
}
.shadow-light {
  box-shadow: var(--shadow-sm) !important;
}
.shadow-dark {
  box-shadow: var(--shadow-lg) !important;
}
.shadow-premium {
  box-shadow: var(--shadow-premium) !important;
}
.shadow-border {
  box-shadow: var(--shadow-border) !important;
}
.text-snow {
  color: var(--snow) !important;
}
.text-black {
  color: var(--black-full) !important;
}
.text-slate-blue {
  color: var(--primary) !important;
}
.text-silver {
  color: var(--silver) !important;
}
.text-pure-red {
  color: var(--secondary) !important;
}
.text-white {
  color: var(--white-full) !important;
}
.text-dark {
  color: var(--dark) !important;
}
.text-primary {
  color: var(--primary) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.text-accent {
  color: var(--accent) !important;
}
.text-pri-light {
  color: var(--pri-light) !important;
}

/* BACKGROUND COLORS */
.bg-snow {
  background-color: var(--snow) !important;
}
.bg-black {
  background-color: var(--black-full) !important;
}
.bg-slate-blue {
  background-color: var(--primary) !important;
}
.bg-silver {
  background-color: var(--silver) !important;
}
.bg-pure-red {
  background-color: var(--secondary) !important;
}
.bg-white {
  background-color: var(--white-full) !important;
}
.bg-dark {
  background-color: var(--dark) !important;
}
.bg-primary {
  background-color: var(--primary) !important;
}
.bg-secondary {
  background-color: var(--secondary) !important;
}
.bg-accent {
  background-color: var(--accent) !important;
}

/* BORDER COLORS */
.border-snow {
  border-color: var(--snow) !important;
}
.border-black {
  border-color: var(--black) !important;
}
.border-slate-blue {
  border-color: var(--primary) !important;
}
.border-silver {
  border-color: var(--silver) !important;
}
.border-pure-red {
  border-color: var(--secondary) !important;
}
.border-secondary {
  border-color: var(--secondary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-style: normal;
  color: var(--dark-p);
  overflow-x: hidden;
  font-size: 14px;
}

p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 24px;
}
.fs-14 {
  font-size: 14px !important;
}

* {
  margin: 0;
  padding: 0;
}

.navbar-toggler:focus,
a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  text-decoration: none;
  outline: none;
  outline: none !important;
  border-color: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

select {
  -webkit-writing-mode: horizontal-tb !important;
  text-rendering: auto;
  color: var(--secondary);
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: start;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: pre;
  -webkit-rtl-ordering: logical;
  background-color: -internal-light-dark(white, #3b3b3b);
  cursor: default;
  margin: 0em;
  font: 400 14px;
  border-radius: 0px;
  border-width: 1px;
  border-style: solid;
  border-color: -internal-light-dark(#767676, #858585);
  -o-border-image: initial;
  border-image: initial;
}

span,
a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
}
a {
  color: var(--primary);
}
a:hover {
  color: var(--accent);
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin: 0px;
  color: var(--dark);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1,
.font-50 {
  font-size: 50px !important;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-205 {
  padding-top: 205px;
}

.pt-210 {
  padding-top: 210px;
}

.pt-215 {
  padding-top: 215px;
}

.pt-220 {
  padding-top: 220px;
}

.pt-225 {
  padding-top: 225px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

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

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-205 {
  padding-bottom: 205px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-215 {
  padding-bottom: 215px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-225 {
  padding-bottom: 225px;
}

.img-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container {
    width: 450px;
  }
}

/* Bread Crumbs */
.breadcrumbs {
  position: relative;
  padding: 12px 0;
  z-index: 2;
  text-align: left;
  background-color: var(--white-full);
  -webkit-box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.075);
  box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.075);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumbs {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .breadcrumbs {
    padding: 30px;
  }
}

.breadcrumbs .breadcrumbs-content {
  position: relative;
  text-align: left;
}

.breadcrumbs .breadcrumbs-content .page-title {
  font-size: 20px !important;
  color: var(--primary);
  font-weight: 900;
  position: relative;
  line-height: 28px;
  text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumbs .breadcrumbs-content .page-title {
    font-size: 17px;
    line-height: 28px;
  }
}

@media (max-width: 767px) {
  .breadcrumbs .breadcrumbs-content .page-title {
    font-size: 16px;
    text-align: center;
    line-height: 26px;
  }
}

.breadcrumbs .breadcrumbs-content .breadcrumb-nav {
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
  display: inline-block;
}

.breadcrumbs .breadcrumb-nav {
  text-align: right;
}

@media (max-width: 767px) {
  .breadcrumbs .breadcrumb-nav {
    text-align: center;
    margin-top: 15px;
  }
}

.breadcrumbs .breadcrumb-nav li {
  display: inline-block;
  position: relative;
  padding-right: 14px;
  margin-right: 14px;
  text-transform: capitalize;
}

.breadcrumbs .breadcrumb-nav li:after {
  content: '\ea62';
  font-family: lineIcons;
  font-size: 12px;
  position: absolute;
  top: 3px;
  right: -7px;
}

.breadcrumbs .breadcrumb-nav li:last-child {
  margin: 0;
  padding: 0;
}

.breadcrumbs .breadcrumb-nav li:last-child::after {
  display: none;
}

.breadcrumbs .breadcrumb-nav li,
.breadcrumbs .breadcrumb-nav li a {
  color: #888;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumbs .breadcrumb-nav li i,
.breadcrumbs .breadcrumb-nav li a i {
  font-size: 13px;
  display: inline-block;
  margin-right: 3px;
  position: relative;
  top: -1px;
}

.breadcrumbs .breadcrumb-nav li a {
  position: relative;
}

.breadcrumbs .breadcrumb-nav li a:hover {
  color: var(--primary);
}

.section {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 40px;
  padding: 0px 0px;
  position: relative;
  z-index: 5;
  position: relative;
}

.section-title h2 {
  font-size: 28px;
  line-height: 33px;
  text-transform: capitalize;
  position: relative;
  font-weight: 800;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}

.section-title h2::before {
  position: absolute;
  left: 28px;
  bottom: 0;
  content: '';
  background-color: var(--primary);
  height: 2px;
  width: 50px;
  margin-left: -25px;
  border-radius: 2px;
}

.section-title p {
  font-size: 14px;
  color: var(--dark-p);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title {
    padding: 0px 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title {
    padding: 0px 20px;
    margin-bottom: 30px;
  }
  .section-title h3 {
    font-size: 14px;
  }
  .section-title h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .section-title p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .section-title {
    padding: 0px 10px;
    margin-bottom: 25px;
  }
  .section-title h3 {
    font-size: 14px;
  }
  .section-title h2 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 18px;
  }
  .section-title p {
    font-size: 14px;
  }
}

.section-title.align-right {
  padding: 0;
  padding-left: 600px;
}

.section-title.align-right h2:before {
  display: none;
}

.section-title.align-right h2:after {
  position: absolute;
  right: 0;
  bottom: -1px;
  height: 2px;
  width: 50px;
  background: var(--primary);
  content: '';
}

.section-title.align-left {
  padding: 0;
  padding-right: 600px;
}

.section-title.align-left h2:before {
  left: 0;
  margin-left: 0;
}

/* One Click Scrool Top Button*/
.scroll-top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  color: var(--white-full) !important;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 4px;
}

.scroll-top:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  background-color: var(--secondary);
}

/* Overlay */
.overlay {
  position: relative;
  z-index: 1;
}

.overlay::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: var(--secondary);
  content: '';
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

/* Pagination CSS */
.pagination {
  text-align: left;
  margin: 40px 0 0 0;
  display: block;
}

.pagination.center {
  text-align: center;
}

.pagination.right {
  text-align: right;
}

.pagination.left {
  text-align: left;
}

.pagination .pagination-list {
  display: inline-block;
  overflow: hidden;
}

.pagination .pagination-list li {
  margin-right: 5px;
  display: inline-block;
  margin-top: 10px;
}

.pagination .pagination-list li:last-child {
  margin-right: 0px;
}

.pagination .pagination-list li a {
  background: var(--white-full);
  color: var(--secondary);
  font-weight: 500;
  font-size: 14px;
  border-radius: 4px;
  padding: 6px 18px;
  text-align: center;
  border: 1px solid #eee;
}

.pagination .pagination-list li.active a,
.pagination .pagination-list li:hover a {
  background: var(--primary);
  color: var(--white-full);
  border-color: transparent;
}

.pagination .pagination-list li a i {
  font-size: 14px;
}

.blog-grids.pagination {
  margin-top: 50px;
  text-align: center;
}
.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 600 !important;
}
*:not(.quantity-wrapper) > .btn {
  border-radius: 40px !important;
  padding: 8px 18px !important;
}

/* Before element for hover shine effect */
*:not(.quantity-wrapper) > .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  border-radius: 0 50px 50px 0;
  background: var(--accent); /* shine */
  transition: 0.4s ease;
  z-index: -1;
}

/* On hover animation */
*:not(.quantity-wrapper) > .btn:hover::before {
  left: 0;
}
.btn:hover {
  color: var(--white-full) !important;
  border-color: var(--primary) !important;
}

.button .btn {
  display: inline-block;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 30px;
  background-color: var(--secondary);
  color: var(--white-full);
  border: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 3px;
  position: relative;
  z-index: 1;
  margin-right: 7px;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .button .btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
  }
}

@media (max-width: 767px) {
  .button .btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
  }
}

.button .btn i {
  display: inline-block;
  margin-right: 5px;
}

.button .btn:last-child {
  margin: 0;
}

.button .btn:hover {
  color: var(--white-full);
  background-color: var(--dark);
  -webkit-box-shadow: 0px 4px 4px #0000000f;
  box-shadow: 0px 4px 4px #0000000f;
}

.button .btn-alt {
  background-color: var(--secondary) !important;
  color: var(--white-full) !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .button .btn-alt {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
  }
}

@media (max-width: 767px) {
  .button .btn-alt {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
  }
}

.button .btn-alt:hover {
  background-color: var(--primary) !important;
  color: var(--white-full) !important;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

.preloader {
  position: fixed;
  inset: 0;
  background: var(--white-full);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999999;
}

.preloader:before,
.preloader:after,
.preloader div {
  content: '';
  width: 12px;
  height: 12px;
  background: #4b5f7b;
  border-radius: 50%;
  position: absolute;
  animation: bounce 0.6s infinite alternate;
}

.preloader div {
  margin-left: -30px;
}

.preloader:after {
  margin-left: 30px;
  animation-delay: 0.2s;
}

.preloader:before {
  animation-delay: 0.4s;
}

@keyframes bounce {
  to {
    transform: translateY(-18px);
    opacity: 0.5;
  }
}

/*======================================
	01. Start Header CSS
========================================*/
.header {
  width: 100%;
  background: var(--white-full);
  position: relative;
  width: 100%;
  z-index: 99999 !important;
  /* Start Topbar */
  /* End Topbar */
  /* Start Main Menu Search */
  /* End Main Menu Search */
}

.header .topbar {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  padding: 6px 0;
}

.htr-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.htr-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.htr-icon i {
  font-size: 18px;
  color: #fff;
}

.htr-call:hover .htr-icon {
  background: rgba(255, 255, 255, 0.28);
}

.htr-text {
  font-size: 13px;
  color: #fff !important;
}


@media (max-width: 767px) {
  .header .topbar .top-left {
    text-align: center;
  }
}

.header .topbar .top-left .menu-top-link .select-position {
  position: relative;
}

.header .topbar .top-left .menu-top-link .select-position select {
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  border: none;
  padding: 0 10px 0 0px;
  color: var(--white-full) !important;
  font-weight: 500;
  font-size: 14px;
  background-color: var(--secondary) !important;
}

.header .topbar .top-left .menu-top-link .select-position select:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.header .topbar .top-left .menu-top-link .select-position::after {
  border-bottom: 2px solid var(--white-full);
  border-right: 2px solid var(--white-full);
  content: '';
  display: block;
  height: 6px;
  margin-top: -3px;
  pointer-events: none;
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 6px;
}

.header .topbar .top-left .menu-top-link li {
  display: inline-block;
  margin-right: 20px;
}

.header .topbar .top-left .menu-top-link li:last-child {
  margin: 0;
}

.header .topbar .top-middle {
  text-align: center;
}

@media (max-width: 767px) {
  .header .topbar .top-middle {
    display: none;
  }
}

.header .topbar .top-middle .useful-links li {
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
}

.header .topbar .top-middle .useful-links li:last-child {
  margin: 0;
  border: none;
}

.header .topbar .top-middle .useful-links li a {
  color: var(--white-full);
  font-size: 14px;
  font-weight: 500;
}

.header .topbar .top-middle .useful-links li a:hover {
  color: var(--primary);
}

.header .topbar .top-end {
  float: right;
  display: inline-block;
}

@media (max-width: 767px) {
  .header .topbar .top-end {
    float: none;
    text-align: center;
    display: block;
    margin-top: 10px;
  }
}

.header .topbar .top-end .user {
  color: var(--white-full);
  display: inline-block;
  margin-right: 5px;
  font-weight: 500;
  font-size: 14px;
}

.header .topbar .top-end .user i {
  color: var(--white-full);
  display: inline-block;
  margin-right: 5px;
  font-size: 16px;
}

.header .topbar .top-end .user-login {
  display: inline-block;
  white-space: nowrap;
}

.header .topbar .top-end .user-login li {
  display: inline-block;
  border-right: 1px solid rgba(255, 255, 255, 0.459);
  padding: 0px 10px;
  white-space: nowrap;
}

.header .topbar .top-end .user-login li:first-child {
  padding-right: 12px;
}

.header .topbar .top-end .user-login li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.header .topbar .top-end .user-login li a {
  color: var(--white-full);
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
}

.header .topbar .top-end .user-login li a:hover {
  color: var(--primary);
}

.header .header-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  border-bottom: 1px solid #eee;
}

@media (max-width: 767px) {
  .header .header-middle .d-xs-none {
    display: none;
  }
}

.header .middle-right-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .header .middle-right-area {
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
    float: right;
  }
}

.header .nav-hotline {
  position: relative;
  padding-left: 50px;
  margin-right: 35px;
}

@media (max-width: 767px) {
  .header .nav-hotline {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .nav-hotline {
    display: none;
  }
}

.header .nav-hotline i {
  color: var(--secondary);
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  border: 1px solid #eee;
  border-radius: 50%;
}

.header .nav-hotline h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary);
}

.header .nav-hotline h3 span {
  color: #888;
  font-weight: 500;
  font-size: 14px;
  display: block;
  margin-top: 2px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header .nav-hotline h3 span {
    font-size: 12px;
    font-weight: 600;
  }
}

.header .navbar-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.header .navbar-cart .wishlist {
  margin-right: 12px;
}

.header .navbar-cart .wishlist a,
.wishlist-cart a {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #eee;
  color: #555;
  font-size: 18px;
  text-align: center;
  position: relative;
}
.wishlist-cart a {
  background-color: var(--white-full);
}

.header .navbar-cart .wishlist a:hover,
.wishlist-cart a:hover {
  color: var(--white-full);
  background-color: var(--primary);
  border-color: transparent;
}
.wishlist-cart {
  position: absolute;
  top: 0;
  right: 0;
}

.header .navbar-cart .wishlist a .total-items {
  position: absolute;
  right: -6px;
  top: -5px;
  height: 19px;
  width: 19px;
  line-height: 19px;
  background-color: var(--secondary);
  color: var(--white-full);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  border-radius: 50%;
}

.header .navbar-cart .cart-items {
  position: relative;
}

.header .navbar-cart .cart-items:hover .main-btn {
  color: var(--white-full);
  background-color: var(--primary);
  border-color: transparent;
}

.header .navbar-cart .cart-items .main-btn {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #eee;
  color: #555;
  font-size: 18px;
  text-align: center;
  position: relative;
}

.header .navbar-cart .cart-items .main-btn .total-items {
  position: absolute;
  right: -6px;
  top: -5px;
  height: 19px;
  width: 19px;
  line-height: 19px;
  background-color: var(--secondary);
  color: var(--white-full);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  border-radius: 50%;
}

.header .navbar-cart .cart-items:hover .shopping-item {
  opacity: 1;
  visibility: visible;
}

.header .navbar-cart .cart-items .shopping-item {
  position: absolute;
  top: 72px;
  right: 0;
  width: 380px;
  background: var(--white-full);
  padding: 20px 25px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 99;
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.137);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.137);
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 767px) {
  .header .navbar-cart .cart-items .shopping-item {
    width: 250px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .navbar-cart .cart-items .shopping-item {
    top: 68px;
  }
}

@media (max-width: 767px) {
  .header .navbar-cart .cart-items .shopping-item {
    top: 66px;
  }
}

.header .navbar-cart .cart-items .shopping-item .dropdown-cart-header {
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e6e6e6;
}

.header .navbar-cart .cart-items .shopping-item .dropdown-cart-header span {
  text-transform: capitalize;
  color: #222;
  font-size: 14px;
  font-weight: 600;
}

.header .navbar-cart .cart-items .shopping-item .dropdown-cart-header a {
  float: right;
  text-transform: capitalize;
  color: #222;
  font-size: 14px;
  font-weight: 600;
}

.header .navbar-cart .cart-items .shopping-item .dropdown-cart-header a:hover {
  color: var(--primary);
}
.shopping-list {
  max-height: 400px;
  overflow-y: auto;
}

.header .navbar-cart .cart-items .shopping-item .shopping-list li {
  overflow: hidden;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .navbar-cart .cart-items .shopping-item .shopping-list li .remove {
  position: absolute;
  right: 0;
  top: 0;
  height: 24px;
  width: 24px;
  line-height: 24px;
  text-align: center;
  background: var(--accent);
  color: var(--white-full);
  border-radius: 50%;
  font-size: 9px;
  border: 1px solid #ededed;
  padding-left: 1px;
}

.header
  .navbar-cart
  .cart-items
  .shopping-item
  .shopping-list
  li
  .remove:hover {
  border-color: transparent;
  color: var(--white-full);
  background-color: var(--primary);
}

.header
  .navbar-cart
  .cart-items
  .shopping-item
  .shopping-list
  li
  .cart-img-head {
  width: 30%;
}

@media (max-width: 767px) {
  .header
    .navbar-cart
    .cart-items
    .shopping-item
    .shopping-list
    li
    .cart-img-head {
    width: 30%;
    margin-right: 12px;
  }
}

.header .navbar-cart .cart-items .shopping-item .shopping-list li .cart-img {
  border: 1px solid #ededed;
  overflow: hidden;
  height: 80px;
  width: 80px;
  border-radius: 4px;
  float: left;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .header .navbar-cart .cart-items .shopping-item .shopping-list li .cart-img {
    height: 60px;
    width: 60px;
    margin-right: 10px;
  }
}

.header .navbar-cart .cart-items .shopping-item .shopping-list li .content {
  padding-right: 25px;
  width: 60%;
}

@media (max-width: 767px) {
  .header .navbar-cart .cart-items .shopping-item .shopping-list li .content {
    width: 70%;
  }
}

.header .navbar-cart .cart-items .shopping-item .shopping-list li .content h4 {
  margin-bottom: 5px;
  line-height: 22px;
}

.header
  .navbar-cart
  .cart-items
  .shopping-item
  .shopping-list
  li
  .content
  h4
  a {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

@media (max-width: 767px) {
  .header
    .navbar-cart
    .cart-items
    .shopping-item
    .shopping-list
    li
    .content
    h4
    a {
    font-size: 13px;
  }
}

.header
  .navbar-cart
  .cart-items
  .shopping-item
  .shopping-list
  li
  .content
  h4
  a:hover {
  color: var(--primary);
}

.header
  .navbar-cart
  .cart-items
  .shopping-item
  .shopping-list
  li
  .content
  .quantity {
  line-height: 22px;
  font-size: 14px;
  color: var(--primary);
}

.header .navbar-cart .cart-items .shopping-item .bottom {
  text-align: center;
}

.header .navbar-cart .cart-items .shopping-item .bottom .total {
  overflow: hidden;
  display: block;
  padding-bottom: 10px;
}

.header .navbar-cart .cart-items .shopping-item .bottom .total span {
  text-transform: capitalize;
  color: #222;
  font-size: 14px;
  font-weight: 600;
  float: left;
}

.header .navbar-cart .cart-items .shopping-item .bottom .total .total-amount {
  float: right;
  font-size: 14px;
}

.header .navbar-cart .cart-items .shopping-item .bottom .button {
  margin-top: 10px;
  width: 100%;
}

.header .navbar-cart .cart-items .shopping-item .bottom .button .btn {
  width: 100%;
}
.btn-stroke {
  background-color: transparent !important;
  border: 1px solid var(--secondary) !important;
  color: var(--secondary) !important;
}

.btn-stroke:hover {
  border-color: var(--primary) !important;
}

@media (max-width: 767px) {
}

.header .main-menu-search .navbar-search {
  position: relative;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .main-menu-search .select-position {
  position: relative;
}

.header .main-menu-search .select-position:after {
  border-bottom: 1.5px solid var(--secondary);
  border-right: 1.5px solid var(--secondary);
  content: '';
  display: block;
  height: 8px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 8px;
}

.header .main-menu-search .select-position select {
  height: 45px;
  border: 1px solid #e2e2e2;
  border-right: 0px;
  padding: 0 20px;
  background: transparent;
  border-radius: 4px 0 0 4px;
  position: relative;
  padding-right: 30px;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  font-size: 14px;
}

.header .main-menu-search .select-position select:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.header .main-menu-search .search-input {
  position: relative;
  width: 100%;
}
.search-icon {
  color: var(--primary);
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.header .main-menu-search .search-input input {
  width: 100%;
  height: 30px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0 44px 0 16px;
  font-size: 14px;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.header .main-menu-search .search-btn button {
  background-color: var(--primary);
  color: var(--white-full);
  width: 45px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 0 4px 4px 0;
  margin-left: -2px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 18px;
}

.header .main-menu-search .search-btn button:hover {
  color: var(--white-full);
  background-color: var(--accent);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .mobile-menu-btn .toggler-icon {
    background-color: var(--dark);
  }
  .header .button {
    margin: 0 !important;
  }
  .header .nav-inner {
    display: block !important;
    padding: 18px 0;
  }
  .header .navbar-collapse {
    position: absolute;
    top: 55px !important;
    left: 0;
    width: 100%;
    background-color: var(--white-full);
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    max-height: 350px;
    overflow-y: scroll;
    border-top: 1px solid #eee;
    border-radius: 6px;
  }
  .header .navbar .navbar-nav .nav-item a:hover {
    color: var(--accent) !important;
  }
  .header .navbar .navbar-nav .nav-item a.active {
    color: var(--accent) !important;
  }
  .header .navbar-nav .nav-item {
    margin: 0;
  }
  .header .navbar-nav .nav-item:hover a {
    color: var(--primary);
  }
  .header .navbar-nav .nav-item a {
    padding: 12px 16px !important;
  }
  .header .navbar-nav .nav-item a::before {
    display: none;
  }
  .header .navbar-nav .nav-item .sub-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    border: none;
    margin-left: 15px;
    margin-right: 15px;
  }
  .header .navbar-nav .nav-item .sub-menu .nav-item a {
    padding: 12px 12px;
  }
  .header .navbar-nav .nav-item .sub-menu .nav-item a:hover {
    color: var(--secondary) !important;
  }
  .header .navbar-nav .nav-item a {
    color: #051441;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 0;
  }
  .header .navbar-nav .nav-item a::after {
    opacity: 1;
    visibility: visible;
  }
  .header .navbar-nav .nav-item .sub-menu li.active {
    background: var(--white-full) !important;
    color: var(--primary) !important;
  }
  .header .navbar-nav .nav-item .sub-menu .nav-item {
    margin: 0 !important;
  }
  .header .navbar-nav .nav-item .sub-menu .nav-item a {
    padding: 10px 12px !important;
  }
  .header .navbar-nav .nav-item .sub-menu li:hover {
    background: var(--white-full) !important;
    color: var(--primary) !important;
  }
  .header .navbar-nav .nav-item a {
    font-size: 14px;
  }
  .header .navbar-nav .nav-item a:hover {
    color: var(--primary);
  }
}

@media (max-width: 767px) {
  .header .mobile-menu-btn .toggler-icon {
    background-color: var(--dark);
  }
  .header .button {
    margin: 0 !important;
  }
  .header .nav-inner {
    display: block !important;
    padding: 18px 0;
  }
  .header .navbar-collapse {
    position: absolute;
    top: 54px !important;
    left: 0;
    width: 100%;
    background-color: var(--white-full);
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    max-height: 350px;
    overflow-y: scroll;
    border-top: 1px solid #eee;
    border-radius: 6px;
  }
  .header .navbar .navbar-nav .nav-item a:hover {
    color: var(--accent) !important;
  }
  .header .navbar .navbar-nav .nav-item a.active {
    color: var(--accent) !important;
  }
  .header .navbar-nav .nav-item {
    margin: 0;
  }
  .header .navbar-nav .nav-item:hover a {
    color: var(--primary);
  }
  .header .navbar-nav .nav-item a {
    padding: 12px 16px !important;
  }
  .header .navbar-nav .nav-item a::before {
    display: none;
  }
  .header .navbar-nav .nav-item .sub-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    border: none;
    margin-left: 15px;
    margin-right: 15px;
  }
  .header .navbar-nav .nav-item .sub-menu .nav-item a {
    padding: 12px 12px;
  }
  .header .navbar-nav .nav-item .sub-menu .nav-item a:hover {
    color: var(--secondary) !important;
  }
  .header .navbar-nav .nav-item a {
    color: #051441;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 0;
  }
  .header .navbar-nav .nav-item a::after {
    opacity: 1;
    visibility: visible;
  }
  .header .navbar-nav .nav-item .sub-menu li.active {
    background: var(--white-full) !important;
    color: var(--primary) !important;
  }
  .header .navbar-nav .nav-item .sub-menu .nav-item {
    margin: 0 !important;
  }
  .header .navbar-nav .nav-item .sub-menu .nav-item a {
    padding: 10px 12px !important;
  }
  .header .navbar-nav .nav-item .sub-menu li:hover {
    background: var(--white-full) !important;
    color: var(--primary) !important;
  }
  .header .navbar-nav .nav-item a {
    font-size: 14px;
  }
  .header .navbar-nav .nav-item a:hover {
    color: var(--primary);
  }
}

.header .nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .mega-category-menu {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-right: 1px solid #eee;
  margin-right: 40px;
  padding-right: 112px;
  cursor: pointer;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header .mega-category-menu {
    padding-right: 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .mega-category-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .header .mega-category-menu {
    display: none;
  }
  .featured-categories .single-category {
    padding: 14px !important;
  }
}

.header .mega-category-menu .cat-button {
  display: inline-block;
  color: var(--secondary);
  font-size: 15px;
  font-weight: 600;
}

.header .mega-category-menu .cat-button i {
  display: inline-block;
  margin-right: 12px;
  font-size: 20px;
  position: relative;
  top: 2px;
}

.header .mega-category-menu:hover .sub-category {
  opacity: 1;
  visibility: visible;
  top: 61px;
}

.header .mega-category-menu .sub-category {
  position: absolute;
  left: 0;
  top: 68px;
  width: 241px;
  height: auto;
  border: 1px solid #eee;
  background-color: var(--white-full);
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 15px 0;
}

.header .mega-category-menu .sub-category li {
  display: block;
  position: relative;
}

.header .mega-category-menu .sub-category li:hover .inner-sub-category {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.header .mega-category-menu .sub-category li .inner-sub-category {
  padding: 15px 0;
  position: absolute;
  top: 8px;
  width: 240px;
  height: auto;
  border: 1px solid #eee;
  background-color: var(--white-full);
  border-radius: 0;
  left: 239px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header .mega-category-menu .sub-category li .inner-sub-category li {
  display: block;
  position: relative;
}

.header .mega-category-menu .sub-category li .inner-sub-category li:last-child {
  margin: 0;
}

.header .mega-category-menu .sub-category li .inner-sub-category li a {
  color: var(--secondary);
  text-transform: capitalize;
  font-size: 14px;
  position: relative;
  width: 100%;
  padding: 8px 30px;
}

.header .mega-category-menu .sub-category li .inner-sub-category li a:hover {
  color: var(--primary);
}

.header .mega-category-menu .sub-category li:last-child {
  margin: 0;
}

.header .mega-category-menu .sub-category li a {
  color: var(--secondary);
  text-transform: capitalize;
  font-size: 14px;
  position: relative;
  width: 100%;
  padding: 8px 30px;
}

.header .mega-category-menu .sub-category li a i {
  font-size: 12px;
  float: right;
  position: relative;
  top: 5px;
}

.header .mega-category-menu .sub-category li a:hover {
  color: var(--primary);
}

.header .nav-social {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .header .nav-social {
    position: relative;
    margin-top: -50px;
  }
}

.header .nav-social .title {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  display: inline-block;
  margin-right: 15px;
}

@media (max-width: 767px) {
  .header .nav-social .title {
    display: none;
  }
}

.header .nav-social ul li {
  display: inline-block;
  margin-right: 5px;
}

.header .nav-social ul li:last-child {
  margin: 0;
}

.header .nav-social ul li a {
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  display: block;
  border: 1px solid #eee;
  border-radius: 50%;
  font-size: 14px;
  color: #555;
}

.header .nav-social ul li a:hover {
  color: var(--white-full);
  background-color: var(--primary);
  border-color: transparent;
}

.header .navbar-brand {
  margin: 0;
}

@media (max-width: 767px) {
  .header .navbar-brand {
    display: block;
    text-align: left;
    padding: 0;
  }
}

.header .navbar-brand img {
  width: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .navbar-brand img {
    width: 120px;
  }
}

@media (max-width: 767px) {
  .header .navbar-brand img {
    width: 120px;
  }
}

.header.sticky .navbar-brand .white-logo {
  opacity: 0;
  visibility: hidden;
}

.header.sticky .navbar-brand .dark-logo {
  opacity: 1;
  visibility: visible;
}

.header.sticky .button .btn {
  background-color: var(--primary);
  color: var(--white-full);
  border-color: transparent;
}

.header.sticky .button .btn:hover {
  background-color: var(--dark);
  color: var(--white-full);
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: var(--white-full);
  -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  top: 0;
  width: 100%;
}

.navbar-expand-lg .navbar-nav {
  margin: 0;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.header .navbar .navbar-nav .nav-item a.active {
  color: var(--accent);
}

.sticky .navbar .navbar-nav .nav-item a.active {
  color: var(--accent);
}

.sticky .navbar .mobile-menu-btn .toggler-icon {
  background: #333;
}

/*===== NAVBAR =====*/
.navbar-area {
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 0;
  border-bottom: 1px solid #eee;
}

.navbar-area.sticky {
  position: fixed;
  z-index: 99;
  background: var(--primary);
  -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background: var(--white-full);
  padding: 0px 0;
}

.navbar {
  padding: 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand {
  padding-left: 0;
  border-radius: 0;
}

.mobile-menu-btn {
  padding: 0px;
}

.mobile-menu-btn:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.mobile-menu-btn .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #222;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.mobile-menu-btn.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.mobile-menu-btn.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.mobile-menu-btn.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

.navbar-nav .nav-item {
  z-index: 1;
  position: relative;
  margin-right: 40px;
}

.navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}

.navbar-nav .nav-item:hover a {
  color: var(--primary);
}

.sticky .navbar-nav .nav-item:hover a {
  color: var(--primary);
}

.navbar-nav .nav-item a {
  font-size: 14px;
  color: var(--dark);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: relative;
  padding: 20px 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  transition: all 0.3s ease-out 0s;
  position: relative;
  text-transform: capitalize;
}

.navbar-nav .nav-item:hover .dd-menu::before {
  border-bottom-color: var(--primary);
  border-right-color: var(--primary);
}

.navbar-nav .nav-item a.active {
  color: var(--accent);
}

.navbar-nav .nav-item a.dd-menu::after {
  content: '\ea5e';
  font: normal normal normal 1em/1 'LineIcons';
  position: absolute;
  right: -20px;
  font-size: 12px;
  top: 50%;
  margin-left: 5px;
  margin-top: -4px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item a.dd-menu::after {
    right: -15;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-nav .nav-item a.dd-menu::after {
    top: 18px;
    right: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-nav .nav-item a.collapsed::after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.navbar-nav .nav-item:hover > .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.navbar-nav .nav-item:hover > .sub-menu .sub-menu {
  left: 100%;
  top: 0;
}

.navbar-nav .nav-item .sub-menu {
  padding: 15px 0;
  min-width: 300px;
  background: var(--white-full);
  border: 1px solid #eee;
  position: absolute;
  top: 110% !important;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.navbar-nav .nav-item:hover .sub-menu {
  top: 100% !important;
}

.navbar-nav .nav-item .sub-menu .nav-item {
  width: 100%;
}

.navbar-nav .nav-item .sub-menu .nav-item:last-child {
  margin: 0;
}

.navbar-nav .nav-item .sub-menu .nav-item a {
  padding: 0;
  color: var(--dark);
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.navbar-nav .nav-item .sub-menu .nav-item a {
  position: relative;
  display: inline-block;
  padding: 6px 30px;
  color: var(--dark);
  transition: color 0.3s ease;
}

.navbar-nav .nav-item .sub-menu .nav-item a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--primary); /* your theme color */
  transition: width 0.3s ease;
}

.navbar-nav .nav-item .sub-menu .nav-item a:hover {
  color: var(--accent);
}

.navbar-nav .nav-item .sub-menu .nav-item a:hover::after {
  width: 100%;
}

.navbar-nav .nav-item .sub-menu.left-menu {
  left: -100%;
}

.navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    display: none;
  }
}

.navbar-nav .nav-item .sub-menu > li {
  display: block;
  margin-left: 0;
}

.navbar-nav .nav-item .sub-menu > li:last-child {
  border: none;
}

.navbar-nav .nav-item .sub-menu > li.active > a {
  color: var(--primary) !important;
}

.navbar-nav .nav-item .sub-menu > li > a {
  font-weight: 400;
  display: block;
  padding: 12px 15px;
  font-size: 14px;
  color: #222;
  font-weight: 400;
}

.navbar-nav .nav-item .sub-menu > li a {
  border: none;
  transition: all ease-in-out 0.6s !important;
}

.navbar-nav .nav-item .sub-menu > li a:hover {
  color: var(--accent) !important;
  padding-left: 10px;
}

.add-list-button {
  display: inline-block;
  margin-left: 10px;
}

.add-list-button .btn i {
  font-size: 14px;
  display: inline-block;
  margin-right: 5px;
}

/*======================================
     End Header CSS
  ========================================*/
/*======================================
    Hero Area CSS
========================================*/
.hero-area {
  position: relative;
  background-color: var(--white-full);
  /* margin-top: 12px; */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .md-custom-padding {
    padding-right: 0 !important;
  }
}

.hero-area .custom-padding-right {
  padding-right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .custom-padding-right {
    padding-right: calc(var(--bs-gutter-x) / 2);
  }
}

@media (max-width: 767px) {
  .hero-area .custom-padding-right {
    padding-right: calc(var(--bs-gutter-x) / 2);
  }
}

.hero-area .slider-head {
  position: relative;
  overflow: hidden;
}

.hero-area .slider-head:hover .tns-controls button:first-child {
  left: 0;
}

.hero-area .slider-head:hover .tns-controls button:last-child {
  right: 0;
}

.hero-area .tns-controls button {
  width: 35px;
  height: 60px;
  cursor: pointer;
  z-index: 2;
  color: var(--white-full);
  font-size: 17px;
  background: var(--primary);
  border: none;
  padding: 2px 5px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: absolute;
  z-index: 99;
  top: 50%;
  margin-top: -30px;
  border-radius: 0;
}

.hero-area .tns-controls button:hover {
  background-color: var(--secondary);
  color: var(--white-full);
}

.hero-area .tns-controls button:first-child {
  left: -40px;
  border-radius: 0 4px 4px 0;
}

.hero-area .tns-controls button:last-child {
  right: -40px;
  border-radius: 4px 0px 0px 4px;
}
.w-fit-content {
  width: fit-content !important ;
}

.hero-area .hero-slider .single-slider {
  background-size: cover;
  background-position: unset;
  background-repeat: no-repeat;
  height: calc(90vh - 122px);
  position: relative;
}

@media (max-width: 767px) {
  .hero-area .hero-slider .single-slider {
    position: relative;
  }
  .hero-area .hero-slider .single-slider::before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    height: 100%;
    width: 100%;
    background-color: var(--white-full);
    opacity: 0.6;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-slider .single-slider {
    /* height: 400px; */
    /* margin-bottom: 12px; */
  }
}

@media (max-width: 767px) {
  .hero-area .hero-slider .single-slider {
    /* height: 350px; */
    /* margin-bottom: 12px; */
  }
}

.hero-area .hero-slider .single-slider .content {
  /* padding: 20px 365px 20px 50px; */
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-slider .single-slider .content {
    padding-right: 300px;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-slider .single-slider .content {
    padding-right: 30px;
    padding-left: 20px;
  }
}

.hero-area .hero-slider .single-slider .content h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--secondary);
}
.hero-area .hero-slider .single-slider .content h1 span,
.hero-area .hero-slider .single-slider .content h2 span {
  /* background: var(--pri-light);
  padding: 4px 20px !important;
  border-radius: 10px; */
  color: var(--white-full) !important;
}

.hero-area .hero-slider .single-slider .content h2 span,
.hero-area .hero-slider .single-slider .content h1 span {
  font-size: 17px;
  font-weight: 600;
  color: #8a8a8a;
  margin-bottom: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-slider .single-slider .content h2 span,
  .hero-area .hero-slider .single-slider .content h1 span {
    font-size: 14px;
    font-weight: 500;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-slider .single-slider .content h2 span,
  .hero-area .hero-slider .single-slider .content h1 span {
    font-size: 14px;
    font-weight: 500;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-slider .single-slider .content h2 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-slider .single-slider .content h2 {
    font-size: 20px;
  }
}

.hero-area .hero-slider .single-slider .content p {
  margin-top: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-slider .single-slider .content p {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-slider .single-slider .content p {
    margin-top: 10px;
  }
}

.hero-area .hero-slider .single-slider .content h3 {
  margin-top: 20px;
  font-size: 25px;
  font-weight: 800;
  color: var(--secondary);
}

.hero-area .hero-slider .single-slider .content h3 span {
  display: inline-block;
  margin-right: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #8a8a8a;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-slider .single-slider .content h3 span {
    margin-right: 10px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-slider .single-slider .content h3 span {
    margin-right: 8px;
    font-size: 14px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-slider .single-slider .content h3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-slider .single-slider .content h3 {
    font-size: 20px;
  }
}

.hero-area .hero-slider .single-slider .content .button {
  margin-top: 30px;
}

.hero-area .hero-small-banner {
  height: 244px;
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  background-size: cover;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-small-banner {
    height: 240px;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-small-banner {
    height: 240px;
  }
}

.hero-area .hero-small-banner .content {
  padding: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hero-area .hero-small-banner .content h2 {
  font-size: 20px;
  font-weight: 700;
}

.hero-area .hero-small-banner .content h2 span {
  font-size: 15px;
  font-weight: 500;
  color: #888;
  display: block;
  margin-bottom: 4px;
}

.hero-area .hero-small-banner .content h3 {
  color: var(--primary);
  font-size: 20px;
  font-weight: 800;
  display: block;
  margin-top: 7px;
}

.hero-area .hero-small-banner.style2 {
  margin-top: 12px;
  background-image: url('../images/hero/small-banner-bg.png');
  background-color: var(--secondary);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-small-banner.style2 {
    margin-top: 0;
  }
}

.hero-area .hero-small-banner.style2 .content h2 {
  color: var(--white-full);
}

.hero-area .hero-small-banner.style2 .content h2 span {
  color: var(--white-full);
}

.hero-area .hero-small-banner.style2 .content p {
  font-size: 15px;
  color: var(--white-full);
  font-weight: 600;
  margin-top: 15px;
}

.hero-area .hero-small-banner.style2 .content .button {
  margin-top: 20px;
}

.hero-area .hero-small-banner.style2 .content .button .btn {
  background-color: var(--white-full);
  color: var(--primary);
  padding: 10px 25px;
}

.hero-area .hero-small-banner.style2 .content .button .btn:hover {
  background-color: var(--primary);
  color: var(--white-full);
}

/*======================================
    Shipping Info CSS
========================================*/
.sec-bg {
  background-color: var(--sec-bg);
}
.sec-bg-2 {
  background-color: var(--sec-bg-2);
}

.shipping-info {
  padding: 60px 0;
}

/* UL reset */
.shipping-info ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-border);
}

/* ITEM */
.shipping-info li {
  list-style: none;
  width: 25%;
  padding: 35px 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
}

/* Remove last border */
.shipping-info li:last-child {
  border-right: none;
}

/* ICON */
.shipping-info .media-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(108, 102, 207, 0.12);
  transition: all 0.3s ease;
}

.shipping-info li:hover .media-icon {
  background: var(--primary);
}

/* ICON STYLE */
.shipping-info .media-icon i {
  font-size: 26px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.shipping-info li:hover .media-icon i {
  color: #fff;
}

/* TEXT */
.shipping-info .media-body h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.shipping-info .media-body span {
  font-size: 13px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .shipping-info li {
    width: 50%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
}

@media (max-width: 575px) {
  .shipping-info li {
    width: 100%;
  }
}



@media (max-width: 575px) {
  .single-product .product-image .button {
    bottom: 0px !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .my-product-slider .single-product {
    height: fit-content !important;
  }
  .hero-area .slider-head .tns-controls button:first-child {
    right: 80px !important;
    left: auto !important;
    bottom: 20px !important;
    top: auto !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
  }
  .hero-area .slider-head .tns-controls button:last-child {
    right: 10px !important;
    left: auto !important;
    bottom: 20px !important;
    top: auto !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
  }
}

.shipping-info .media-icon i {
  filter: grayscale(100%) brightness(70%) !important;
  transition: 0.3s ease-in-out;
}

.shipping-info li:hover .media-icon i {
  filter: grayscale(0%) brightness(100%) !important;
}
.shipping-info li:hover h5 {
  color: var(--accent) !important;
}

.shipping-info .media-icon {
  margin-bottom: 15px;
}

.shipping-info .media-icon i {
  color: var(--primary);
  font-size: 38px;
}

.shipping-info .media-body {
  padding-bottom: 0px;
}

.shipping-info .media-body h5 {
  font-size: 15px;
  margin: 0px;
  font-weight: 600;
  color: var(--dark);
}

.shipping-info .media-body span {
  font-size: 13px;
  margin-top: 2px;
  color: #777;
}

#productTabs {
  display: flex !important;       /* keep flex */
  flex-wrap: nowrap !important;   /* prevent wrapping */
  overflow-x: auto;               /* allow horizontal scroll */
  -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
  gap: 10px;
  padding-bottom: 5px;
  scrollbar-width: none;          /* hide scrollbar for Firefox */
}

#productTabs .nav-item .btn {
  border: none;
  padding: 8px 25px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

#productTabs .nav-item .btn.active {
  background-color: var(--primary) !important;
  color: var(--white-full) !important;
}
#productTabs .nav-item .btn:hover {
  color: var(--white-full) !important;
}

@media(min-width: 768px) {
  #productTabs {
    justify-content: flex-end; /* right align on desktop */
    overflow-x: visible;       /* remove scroll */
  }
}

/*======================================
    Featured Categories Area CSS
========================================*/
.featured-categories .section-title {
  margin-bottom: 20px;
}

.featured-categories .single-category {
  box-shadow: var(--shadow-premium);
  padding: 30px 14px;
  height: 100%;
  /*margin-top: 30px;*/
  position: relative;
  background: var(--white-full);
  z-index: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  border-radius: 12px !important;
}

.featured-categories .single-category .heading {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
}
.featured-categories .single-category .heading span {
  color: var(--dark) !important;
}

.featured-categories .single-category ul {
  margin-top: 20px;
}

.featured-categories .single-category ul li {
  display: block;
  margin-bottom: 4px;
}

.featured-categories .single-category ul li:last-child {
  margin: 0;
}

.featured-categories .single-category ul li a {
  color: #666;
}

.featured-categories .single-category ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.featured-categories .single-category .featured-categories-img {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
  width: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .featured-categories .single-category .featured-categories-img {
    width: 50%;
  }
}

/*======================================
    Product CSS
========================================*/
/* Single Product*/
.single-product {
  height: -webkit-fill-available;
  border-radius: 12px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-top: 30px;
  -webkit-box-shadow: var(--shadow-premium);
  box-shadow: var(--shadow-premium);
  padding: 8px;
  background: var(--white-full);
}

.single-product .product-image {
  overflow: hidden;
  position: relative;
}
.single-product .product-image img {
  padding: 12px !important;
}

.single-product .product-image .sale-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 22;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transform: rotate(-5deg);
  transition: all 0.3s ease;
}

.single-product .product-image .new-tag {
  background: var(--primary);
  border-radius: 2px;
  font-size: 12px;
  color: var(--white-full);
  font-weight: bold;
  position: absolute;
  top: 0;
  padding: 5px 10px;
  left: 0;
  z-index: 22;
}

.single-product .product-image .button {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -60px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
}

.single-product .product-image .button .btn {
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  width: 140px;
}

.single-product .product-image .button .btn i {
  font-size: 18px;
  position: relative;
  top: 2px;
}

.single-product .product-image img {
  width: 100%;
  height: 250px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-product:hover .product-image .button {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}

.single-product:hover .product-image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.single-product .product-info {
  padding: 16px 4px;
  background-color: var(--white-full);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.single-product .product-info .category {
  color: #888;
  font-size: 13px;
  display: block;
  margin-bottom: 2px;
}

p,
span {
  color: var(--dark-p);
}
.single-footer.f-contact p {
  color: #d6d6d6 !important;
}

.single-product .product-info .title a {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--dark);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s ease;
}
.single-product .product-image .btn {
  background-color: var(--primary) !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .single-product .product-info .title a {
    font-size: 15px;
  }
}

.single-product .product-info .title a:hover {
  color: var(--primary);
}

.single-product .product-info .review {
  margin-top: 5px;
}

.single-product .product-info .review li {
  display: inline-block;
}

.single-product .product-info .review li i {
  color: #fecb00;
  font-size: 13px;
}

.single-product .product-info .review li span {
  display: inline-block;
  margin-left: 4px;
  color: #888;
  font-size: 13px;
}

.single-product .product-info .price span {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  display: inline-block;
}

.single-product .product-info .price .discount-price {
  margin: 0;
  color: #aaaaaa;
  text-decoration: line-through;
  font-weight: normal;
  margin-left: 10px;
  font-size: 14px;
  display: inline-block;
}
.bg-dark {
  background-color: var(--dark) !important;
}

.trending-product .section-title {
  margin-bottom: 20px;
}

/*======================================
    Banner CSS
========================================*/
.single-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
  overflow: hidden;
}

/* Overlay */
.single-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* Light black overlay */
  z-index: 1;
}

/* Content Above Overlay */
.single-banner > * {
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .single-banner.custom-responsive-margin {
    margin-top: 30px;
  }
}

.single-banner.right {
  text-align: right;
}

.single-banner.right .content {
  padding: 50px 40px;
}

.single-banner .content {
  padding: 70px 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-banner .content {
    padding: 50px 30px;
  }
}

@media (max-width: 767px) {
  .single-banner .content {
    padding: 35px;
  }
}

.single-banner .content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white-full);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-banner .content h2 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .single-banner .content h2 {
    font-size: 18px;
  }
}

.single-banner .content .price span {
  color: var(--secondary);
  display: block;
  margin-top: 10px;
  font-size: 22px;
  font-weight: 700;
}

.single-banner .content p {
  font-size: 14px;
  margin-top: 15px;
  color: var(--snow);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-banner .content p {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .single-banner .content p {
    margin-top: 8px;
  }
}

.single-banner .content .button {
  margin-top: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-banner .content .button {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .single-banner .content .button {
    margin-top: 15px;
  }
}

/*======================================
    Special Offer CSS
========================================*/

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .special-offer .section-title {
    margin-bottom: 20px;
  }
}

.special-offer .offer-content {
  text-align: left;
  background-color: var(--white-full);
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: var(--shadow-lg);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  margin-top: 30px;
}

.special-offer .offer-content:hover .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.special-offer .offer-content .image {
  position: relative;
  overflow: hidden;
}

.special-offer .offer-content .image img {
  width: 100%;
  border-radius: 4px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.special-offer .offer-content .image .sale-tag {
  background: #f73232;
  border-radius: 2px;
  font-size: 13px;
  color: var(--white-full);
  font-weight: bold;
  position: absolute;
  top: 10px;
  padding: 5px 10px;
  right: 10px;
  z-index: 22;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  padding: 0;
  text-align: center;
}

.special-offer .offer-content .text {
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 0px 20px;
}

.special-offer .offer-content .text h2 {
  text-align: left;
  margin-bottom: 10px;
}

.special-offer .offer-content .text h2 a {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
}

.special-offer .offer-content .text h2 a:hover {
  color: var(--primary);
}

.special-offer .offer-content .text .review {
  margin-top: 5px;
}

.special-offer .offer-content .text .review li {
  display: inline-block;
}

.special-offer .offer-content .text .review li i {
  color: #fecb00;
  font-size: 13px;
}

.special-offer .offer-content .text .review li span {
  display: inline-block;
  margin-left: 4px;
  color: #888;
  font-size: 13px;
}

.special-offer .offer-content .text .price {
  margin-top: 10px;
  margin-bottom: 10px;
}

.special-offer .offer-content .text .price span {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  display: inline-block;
}

.special-offer .offer-content .text .price .discount-price {
  margin: 0;
  color: #aaaaaa;
  text-decoration: line-through;
  font-weight: normal;
  margin-left: 10px;
  font-size: 18px;
  display: inline-block;
}

.special-offer .offer-content .text p {
  color: #888;
}

.special-offer .offer-content .box-head {
  border: 1px solid #eee;
  padding: 15px 10px;
  border-radius: 4px;
}

.special-offer .offer-content .box {
  background: #ffffff0d;
  width: 24%;
  height: auto;
  margin: 0;
  display: inline-block;
}

.special-offer .offer-content h2 {
  text-align: center;
  padding-top: 2px;
  color: #666;
  font-size: 13px;
  font-weight: 600;
}

.special-offer .offer-content .box h1 {
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--secondary);
}

.special-offer .offer-content .alert {
  display: none;
}

/*======================================
    Home Product List CSS
========================================*/
@media (max-width: 767px) {
  .home-product-list .custom-responsive-margin {
    margin-bottom: 40px;
  }
}

.home-product-list .list-title {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e5e5;
  color: #232323;
  font-size: 15px;
  font-weight: 500;
}

.home-product-list .list-title::before {
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 90px;
  height: 1px;
  background-color: var(--primary);
  content: '';
}

.home-product-list .single-list {
  margin-bottom: 20px;
}

.home-product-list .single-list:last-child {
  margin: 0;
}

.home-product-list .single-list .list-image {
  width: 60px;
  padding-right: 12px;
  float: left;
  position: relative;
  top: 10px;
}

.home-product-list .single-list .list-image a {
  display: block;
  border-radius: 5px;
  overflow: hidden;
}

.home-product-list .single-list .list-image a img {
  width: 100%;
}

.home-product-list .single-list .list-info {
  display: table-cell;
  vertical-align: top;
}

.home-product-list .single-list .list-info h3 a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.home-product-list .single-list .list-info h3 a:hover {
  color: var(--primary);
}

.home-product-list .single-list .list-info span {
  display: block;
  margin-top: 2px;
  font-size: 13px;
}

/*======================================
    About Us CSS
========================================*/

.about-us .content-left {
  position: relative;
}

.about-us .content-left img {
  width: 100%;
  border-radius: 4px;
}

.about-us .content-left .video {
  position: absolute;
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  color: var(--primary);
  background-color: var(--white-full);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  font-size: 25px;
  padding-left: 3px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.about-us .content-left .video:hover {
  color: var(--white-full);
  background-color: var(--primary);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.about-us .content-left .video:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: 1px solid var(--white-full);
  border-radius: 50%;
  -webkit-animation: pulse-border-2 2s linear infinite;
  animation: pulse-border-2 2s linear infinite;
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-webkit-keyframes pulse-border-2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border-2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

.about-us .content-right {
  padding-left: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .about-us .content-right {
    padding: 0;
    margin-top: 30px;
  }
}

.about-us .content-right h2 {
  display: block;
  font-size: 30px;
  margin-bottom: 25px;
  line-height: 45px;
  position: relative;
  font-weight: 700;
}
.about-us h2 {
  font-size: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-us .content-right h2 {
    font-size: 28px;
    line-height: 38px;
  }
}

@media (max-width: 767px) {
  .about-us .content-right h2 {
    font-size: 22px;
    line-height: 35px;
  }
}

.about-us .content-right h3 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 8px;
  line-height: 45px;
  text-transform: capitalize;
  position: relative;
  font-weight: 600;
}

.about-us .content-right p {
  margin-bottom: 25px;
}

.about-us .content-right p:last-child {
  margin: 0;
}

/*======================================
    Faq CSS
========================================*/
.faq {
  padding-bottom: 80px;
}

.faq .section-title {
  margin-bottom: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq .section-title {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .faq .section-title {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq {
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .faq {
    padding-bottom: 30px;
  }
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding-right: 40px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.accordion-item .accordion-button {
  border-radius: 4px;
  font-size: 17px;
  font-weight: 500;
  width: 100%;
  display: block;
  overflow: hidden;
  border: none;
  padding: 15px 25px;
  padding-right: 40px;
  background-color: var(--white-full);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .accordion-item .accordion-button {
    padding: 18px 20px;
    padding-right: 40px;
  }
}

@media (max-width: 767px) {
  .accordion-item .accordion-button {
    padding: 15px 20px;
    padding-right: 40px;
  }
}

.accordion-item .accordion-button .title {
  font-size: 14px;
  position: relative;
  font-weight: 600;
  float: left;
  line-height: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .accordion-item .accordion-button .title {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .accordion-item .accordion-button .title {
    font-size: 14px;
  }
}

.accordion-item .accordion-button i {
  font-size: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  top: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
}

.accordion-button:not(.collapsed) {
  color: var(--white-full);
  background-color: var(--primary);
  border-radius: 4px 4px 0 0;
}

.accordion-button:not(.collapsed) i::before {
  content: '\eb2e';
  font-family: lineIcons;
}

.accordion-button::after {
  display: none;
}

.accordion-collapse {
  border: none;
}

.accordion-body {
  border-radius: 0 0 4px 4px;
  padding: 25px;
  background-color: var(--white-full);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .accordion-body {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .accordion-body {
    padding: 20px;
  }
}

.accordion-body p {
  margin: 0;
  margin-bottom: 20px;
  color: #777;
}

.accordion-body p:last-child {
  margin: 0;
}

.accordion-item {
  margin-bottom: 20px;
  -webkit-box-shadow: 0px 0px 20px #00000007;
  box-shadow: 0px 0px 20px #00000007;
  border-radius: 4px;
}

.accordion-item:last-child {
  margin: 0;
}

/*======================================
    Blog CSS
========================================*/

.blog-section .section-title {
  margin-bottom: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-section .section-title {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .blog-section .section-title {
    margin-bottom: 20px;
  }
}

.blog-section .single-blog {
  overflow: hidden !important;
  -webkit-box-shadow: var(--shadow-premium);
  box-shadow: var(--shadow-premium);
  padding: 8px;
  background: var(--white-full);
  border-radius: 4px;
}

.blog-section .single-blog .blog-img {
  overflow: hidden;
      border-radius: 8px;
}

.blog-section .single-blog .blog-img a {
  width: 100%;
}

.blog-section .single-blog .blog-img img {
  height: 266px;
  object-fit: cover;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.blog-section .single-blog:hover .blog-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.blog-section .single-blog .blog-content {
  padding: 8px 4px;
}

.blog-section .single-blog .blog-content .category {
  font-size: 14px;
  color: #888;
  display: inline-block;
  font-weight: 500;
}

.blog-section .single-blog .blog-content h4 {
  display: block;
  margin-top: 10px;
  line-height: 28px;
}

.blog-section .single-blog .blog-content h4 a {
  font-size: 19px;
  color: var(--dark);
  display: inline-block;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-section .single-blog .blog-content h4 a:hover {
  color: var(--primary);
}

.blog-section .single-blog .blog-content p {
  display: block;
  /* margin-top: 20px; */
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-section .single-blog .blog-content .button {
  margin-top: 25px;
}

.blog-section .single-blog .blog-content .button .btn {
  background-color: transparent;
  border: 1px solid #dfdfdf;
  color: var(--secondary);
}

.blog-section .single-blog .blog-content .button .btn:hover {
  background-color: var(--primary);
  color: var(--white-full);
  border-color: transparent;
}

.blog-list {
  background: #f9f9f9;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .blog-list .pagination {
    margin-top: 20px;
  }
}

.blog-list .single-blog {
  margin: 0;
}

.blog-list .single-blog {
  margin-bottom: 30px;
}

/* News Details */
.blog-single {
  background: #f9f9f9;
}

.blog-single .single-inner .main-content-head {
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
}

.blog-single .meta-information {
  background-color: var(--white-full);
  padding: 20px 40px;
}

@media (max-width: 767px) {
  .blog-single .meta-information {
    padding: 12px 25px;
  }
}

.blog-single .meta-info {
  margin-top: 5px;
}

.blog-single .meta-info li {
  font-size: 14px;
  display: inline-block;
  margin-right: 15px;
  padding-right: 15px;
  position: relative;
}

@media (max-width: 767px) {
  .blog-single .meta-info li {
    margin-bottom: 5px;
    margin-right: 10px;
  }
}

.blog-single .meta-info li:last-child {
  margin: 0;
  padding: 0;
}

.blog-single .meta-info li a {
  color: #888;
  font-size: 14px;
  font-weight: 500;
}

.blog-single .meta-info li a i {
  display: inline-block;
  margin-right: 5px;
  font-size: 15px;
}

.blog-single .meta-info li a:hover {
  color: var(--primary);
}

.blog-single .post-thumbnils {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.blog-single .post-thumbnils img {
  width: 100%;
}

.blog-single .detail-inner {
  background-color: var(--white-full);
  padding: 40px;
  padding-top: 10px;
}

@media (max-width: 767px) {
  .blog-single .detail-inner {
    padding: 25px;
    padding-top: 10px;
  }
}

.blog-single .post-title {
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 32px;
  display: inline-block;
}

@media (max-width: 767px) {
  .blog-single .post-title {
    line-height: 26px;
  }
}

.blog-single .post-title a {
  font-size: 22px;
  font-weight: 600;
  display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-single .post-title a {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .blog-single .post-title a {
    font-size: 18px;
  }
}

.blog-single .post-title a:hover {
  color: var(--primary);
}

.blog-single p {
  font-size: 14px;
  margin: 20px 0;
  line-height: 26px;
}

.blog-single p:first-child {
  margin-top: 0;
}

.blog-single h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 28px;
}

.blog-single .list {
  margin: 30px 0;
}

.blog-single .list li {
  display: block;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.blog-single .list li:last-child {
  margin-bottom: 0;
}

.blog-single .list li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--white-full);
  font-size: 15px;
  color: var(--primary);
}

blockquote {
  position: relative;
  color: var(--white-full);
  font-weight: 400;
  clear: both;
  z-index: 1;
  margin: 40px 0;
  text-align: center;
  padding: 45px 40px 35px 40px;
  background-color: var(--white-full);
  border-radius: 0;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
}

@media (max-width: 767px) {
  blockquote {
    padding: 45px 25px 30px 25px;
  }
}

blockquote .icon {
  position: absolute;
  top: -25px;
  left: 50%;
  margin-left: -25px;
}

blockquote .icon i {
  font-size: 22px !important;
  color: var(--white-full);
  display: block;
  margin-bottom: 20px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
}

@media (max-width: 767px) {
  blockquote .icon i {
    margin-bottom: 15px;
  }
}

blockquote h4 {
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: var(--secondary);
}

@media (max-width: 767px) {
  blockquote h4 {
    font-size: 14px;
  }
}

blockquote span {
  font-size: 13px;
  display: block;
  margin-top: 20px;
  color: #888;
}

.post-bottom-area {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .post-bottom-area {
    display: block;
  }
}

.post-bottom-area .post-tag ul li {
  display: inline-block;
  margin-right: 10px;
}

.post-bottom-area .post-tag ul li:last-child {
  margin: 0;
}

.post-bottom-area .post-tag ul li a {
  color: #888;
}

.post-bottom-area .post-tag ul li a:hover {
  color: var(--primary);
}

@media (max-width: 767px) {
  .post-bottom-area .post-social-media {
    margin-top: 20px;
  }
}

.post-bottom-area .post-social-media .share-title {
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  color: #888;
}

.post-bottom-area .post-social-media ul {
  display: inline-block;
  margin-left: 10px;
}

.post-bottom-area .post-social-media ul li {
  display: inline-block;
  margin-right: 15px;
}

.post-bottom-area .post-social-media ul li a {
  font-size: 16px;
  color: #999;
  position: relative;
}

.post-bottom-area .post-social-media ul li a:hover {
  color: var(--primary);
}

.post-bottom-area .post-social-media ul li a span {
  background-color: var(--primary);
  color: var(--white-full);
  font-size: 12px;
  font-weight: 400;
  padding: 4px 10px;
  border-radius: 4px;
  position: absolute;
  left: 50%;
  top: -30px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.post-bottom-area .post-social-media ul li a span::before {
  position: absolute;
  content: '';
  left: 50%;
  margin-left: -5px;
  bottom: -10px;
  border: 5px solid var(--primary);
  border-bottom-color: transparent;
  border-right-color: transparent;
  border-left-color: transparent;
}

.post-bottom-area .post-social-media ul li a:hover span {
  opacity: 1;
  visibility: visible;
  top: -35px;
}

/*comments*/
.post-comments {
  background-color: var(--white-full);
  padding: 40px;
  margin-top: 30px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #eee;
}

.comment-title {
  font-size: 17px !important;
  font-weight: 600 !important;
  margin-bottom: 30px !important;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
}

.post-comments .comments-list li {
  padding: 30px;
  padding-left: 130px;
  position: relative;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #eee;
}

@media (max-width: 767px) {
  .post-comments .comments-list li {
    padding-left: 0;
    padding: 25px;
  }
}

.post-comments .comments-list li .comment-img {
  position: absolute;
  left: 30px;
  width: 70px;
  height: 70px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .post-comments .comments-list li .comment-img {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 12px;
  }
}

.post-comments .comments-list li .comment-img img {
  max-width: 70px;
  max-height: 70px;
  border-radius: 50%;
}

.post-comments .comments-list li .comment-desc .desc-top {
  margin-bottom: 20px;
  position: relative;
  display: block;
}

.post-comments .comments-list li .comment-desc .desc-top h6 {
  font-size: 15px;
  margin-bottom: 5px;
  font-weight: 500;
}

.post-comments .comments-list li .comment-desc .desc-top span.date {
  font-size: 14px;
  font-weight: 400;
}

.post-comments .comments-list li .comment-desc .desc-top .reply-link {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  z-index: 2;
  background-color: transparent;
  border-radius: 5px;
  color: #888;
}

@media (max-width: 767px) {
  .post-comments .comments-list li .comment-desc .desc-top .reply-link {
    position: relative;
    display: block;
    margin-top: 15px;
  }
}

.post-comments .comments-list li .comment-desc .desc-top .reply-link:hover {
  color: var(--primary);
}

.post-comments .comments-list li .comment-desc .desc-top .reply-link i {
  margin-right: 5px;
  font-size: 16px;
  position: relative;
  top: 1px;
}

.post-comments .comments-list li .comment-desc p {
  font-weight: 400;
  margin-bottom: 0;
  font-size: 14px;
}

.post-comments .comments-list li.children {
  margin-left: 130px;
}

@media (max-width: 767px) {
  .post-comments .comments-list li.children {
    margin: 0;
  }
}

.post-comments .comments-list li:not(:first-child) {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #eee;
}

/*Comment form*/
.comment-form {
  background-color: var(--white-full);
  padding: 40px;
  margin-top: 30px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #eee;
}

.comment-reply-title {
  font-size: 17px !important;
  font-weight: 600 !important;
  margin-bottom: 30px !important;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
}

.comment-form form .form-box {
  position: relative;
}

.comment-form form .form-box .icon {
  position: absolute;
  top: 17px;
  right: 25px;
  font-size: 16px;
}

.comment-form form .form-box .form-control-custom {
  border: none;
  background: var(--white-full);
  font-size: 14px;
  color: var(--secondary);
  padding: 0 25px;
  font-weight: 500;
  height: 50px;
  border: 1px solid #eee;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 4px;
}

.comment-form form .form-box .form-control-custom:focus {
  border-color: var(--primary);
}

.comment-form form .form-box textarea.form-control-custom {
  height: 200px;
  padding: 25px;
}

.comment-form form .form-box .form-control-custom::-webkit-input-placeholder {
  font-size: 14px;
  color: #888;
  font-weight: 400;
}

.comment-form form .form-box .form-control-custom:-ms-input-placeholder {
  font-size: 14px;
  color: #888;
  font-weight: 400;
}

.comment-form form .form-box .form-control-custom::-ms-input-placeholder {
  font-size: 14px;
  color: #888;
  font-weight: 400;
}

.comment-form form .form-box .form-control-custom::placeholder {
  font-size: 14px;
  color: #888;
  font-weight: 400;
}

/* News sidebar */
.sidebar .widget {
  padding: 16px;
  background-color: var(--white-full);
  margin-bottom: 30px;
  border-radius: 4px;
  border: 1px solid #e7e7e7;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .sidebar .widget:first-child {
    margin-top: 30px;
  }
}

.sidebar .widget:last-child {
  margin-bottom: 0;
}

.sidebar .widget .widget-title {
  font-size: 16px;
  margin-bottom: 25px;
  position: relative;
  font-weight: 600;
  line-height: 28px;
  z-index: 1;
}

.sidebar .widget.search-widget form {
  position: relative;
}

.sidebar .widget.search-widget form input {
  width: 100%;
  background-color: transparent;
  height: 55px;
  border: none;
  padding: 0 70px 0 30px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 4px;
  border: 1px solid #eee;
}

.sidebar .widget.search-widget form input::-webkit-input-placeholder {
  color: #333;
}

.sidebar .widget.search-widget form input:-ms-input-placeholder {
  color: #333;
}

.sidebar .widget.search-widget form input::-ms-input-placeholder {
  color: #333;
}

.sidebar .widget.search-widget form input::placeholder {
  color: #333;
}

.sidebar .widget.search-widget form button {
  border: none;
  position: absolute;
  right: 7px;
  top: 6px;
  width: 42px;
  height: 42px;
  z-index: 1;
  color: var(--white-full) !important;
  font-size: 18px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  color: var(--white-full);
  border-radius: 4px;
  padding: 0 !important;
  border: none;
  background: var(--primary);
}

.sidebar .widget.search-widget form button:hover {
  background-color: var(--secondary);
  color: var(--white-full);
}

.sidebar .widget.popular-feeds .single-popular-feed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
  padding-bottom: 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.sidebar .widget.popular-feeds .single-popular-feed:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc {
  position: relative;
  padding-left: 100px;
  min-height: 82px;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .cetagory {
  font-size: 13px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 500;
  color: #888;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .cetagory:hover {
  color: var(--primary);
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .feed-img {
  position: absolute;
  left: 0;
  top: 5px;
  overflow: hidden;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .feed-img img {
  width: 80px;
  border-radius: 4px;
  height: 80px;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .post-title {
  margin-bottom: 8px;
  line-height: 1.5;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .post-title a {
  font-size: 14px;
  font-weight: 500;
}

.sidebar
  .widget.popular-feeds
  .single-popular-feed
  .feed-desc
  .post-title
  a:hover {
  color: var(--primary);
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .time {
  font-weight: 400;
  font-size: 13px;
  display: block;
}

.sidebar .widget.popular-feeds .single-popular-feed .feed-desc .time i {
  margin-right: 7px;
  font-size: 16px;
}

.sidebar .widget.categories-widget ul li:last-child {
  margin-bottom: 0;
}

.sidebar .widget.categories-widget ul li {
  margin-bottom: 12px;
}

.sidebar .widget.categories-widget ul li:last-child {
  margin: 0;
}

.sidebar .widget.categories-widget ul li span {
  display: inline-block;
}

.sidebar .widget.categories-widget ul li a {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-right: 5px;
  color: #888;
}

.sidebar .widget.categories-widget ul li a:hover {
  color: var(--primary);
}

.sidebar .widget.popular-tag-widget {
  padding-bottom: 35px;
}

.popular-tag-widget .tags > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 7px 15px;
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 400;
  background: var(--primary);
  margin-right: 5px;
  margin-bottom: 10px;
  color: var(--white-full);
  background: transparent;
  color: #888;
  border: 1px solid #eee;
  border-radius: 4px;
}

.popular-tag-widget .tags > a:hover {
  background-color: var(--primary);
  color: var(--white-full);
  border-color: transparent;
}

/*======================================
   Brands CSS
========================================*/
.brands {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.brands #tns2 > .tns-item {
  padding-right: 28px;
}

.brands .title {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .brands {
    padding: 40px 0;
  }
}

.brands .brands-logo-wrapper {
  border: 1px solid #eee;
}

.brands .brands-logo-wrapper .brands-logo-carousel .brand-logo {
  padding: 20px 20px;
  text-align: center;
  margin: 0;
  border-right: 1px solid #eee;
}

.brands .brands-logo-wrapper .brands-logo-carousel .brand-logo img {
  width: 100px;
  opacity: 0.8;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.brands .brands-logo-wrapper .brands-logo-carousel .brand-logo img:hover {
  opacity: 1;
}

/*======================================
    Team CSS
========================================*/

.team .single-team {
  background-color: var(--white-full) !important;
  text-align: center;
  margin-top: 30px;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 35px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.team .single-team:hover {
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.123);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.123);
}

.team .single-team .image img {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  border: 1px solid #eee;
  display: inline-block;
  padding: 5px;
}

.team .single-team .content {
  margin-top: 20px;
}

.team .single-team .content h3 {
  color: #777;
  font-size: 16px;
}

.team .single-team .content h5 {
  font-size: 13px;
  margin-top: 5px;
  color: #888;
}

.team .single-team .content .social {
  margin-top: 20px;
}

.team .single-team .content .social li {
  display: inline-block;
  margin-right: 4px;
}

.team .single-team .content .social li:last-child {
  margin: 0;
}

.team .single-team .content .social li a {
  height: 35px;
  width: 35px;
  line-height: 32px;
  text-align: center;
  border: 1px solid #eee;
  color: #444;
  border-radius: 50%;
  font-size: 14px;
}

.team .single-team .content .social li a:hover {
  border-color: transparent;
  color: var(--white-full);
  background-color: var(--primary);
}

/*======================================
    Item Details CSS
========================================*/

.item-details .product-images {
  z-index: 2;
}

/* .item-details {
  background-color: #f9f9f9;
} */
 

.item-details .top-area {
  background-color: var(--white-full);
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 4px;
}

.item-details .product-images img {
  /* width: 100%; */
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  padding: 5px;
}
.item-details .product-images .thumb-slider .thumb{
  height: 80px;
  border: 1px solid #efefef;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.item-details .product-images .thumb-slider .thumb:hover {
  transform: scale(1.05);
}

.item-details .product-images .thumb-slider .thumb.active {
  border-color: #000;
  box-shadow: 0 4px 15px rgba(0,0,0,.05);
}

.item-details .product-images .thumb-slider .thumb img {
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.item-details .product-images .images {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 1em 1em;
  margin-top: 1em;
}

@media (max-width: 767px) {
  .item-details .product-images .images {
    grid-template-columns: repeat(3, 1fr);
  }
}

@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.item-details .product-images .fade-in {
  -webkit-animation: fadeIn 0.5s ease-in 1 forwards;
  animation: fadeIn 0.5s ease-in 1 forwards;
}

.item-details .product-info {
  padding-left: 30px;
  z-index: 0;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .item-details .product-info {
    padding: 0;
    margin-top: 30px;
  }
}

.item-details .product-info .title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .item-details .product-info .title {
    font-size: 18px;
  }
}

.item-details .product-info .category {
  display: block;
  margin-bottom: 15px;
}

.item-details .product-info .category i {
  display: inline-block;
  margin-right: 5px;
  color: #888;
}

.item-details .product-info .category a {
  color: #888;
  font-weight: 400;
  display: inline-block;
  margin-left: 5px;
}

.item-details .product-info .category a:hover {
  color: var(--primary);
}

.item-details .product-info .price {
  color: var(--secondary);
  display: block;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .item-details .product-info .price {
    font-size: 20px;
  }
}

.item-details .product-info .price span {
  display: inline-block;
  margin-left: 15px;
  color: #888;
  text-decoration: line-through;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .item-details .product-info .price span {
    font-size: 20px;
  }
}

.item-details .product-info .info-text {
  margin-bottom: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.item-details .product-info .form-group {
  margin-top: 20px;
}
.form-group {
  position: relative !important;
}

.item-details .product-info .form-group.color-option .title-label {
  display: block !important;
}

.item-details .product-info .form-group.color-option .single-checkbox {
  margin-top: 8px;
  display: inline-block;
  margin-right: 5px;
}

.item-details
  .product-info
  .form-group.color-option
  .single-checkbox:last-child {
  margin-right: 0;
}

.item-details .product-info .form-group.color-option .single-checkbox label {
  font-size: 16px;
  margin-bottom: 0;
  position: relative;
  bottom: -2px;
}

.item-details
  .product-info
  .form-group.color-option
  .single-checkbox
  input[type='checkbox'] {
  display: none;
}

.item-details
  .product-info
  .form-group.color-option
  .single-checkbox
  input[type='checkbox']
  + label
  span {
  border-color: var(--primary);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 0 5px -3px 0;
  border: 1px solid #d5d5d5;
}

.item-details
  .product-info
  .form-group.color-option
  .single-checkbox
  input[type='checkbox']
  + label
  span::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0);
  transform: scale(0);
  font-size: 10px;
  line-height: 1.2;
  background-color: var(--primary);
  font-family: 'Lineicons';
  content: '\ea5b';
  padding-left: 0px;
  padding-top: 3px;
  border-radius: 50%;
  margin-top: -9px;
  margin-left: -9px;
  text-align: center;
}

.item-details
  .product-info
  .form-group.color-option
  .single-checkbox.checkbox-style-1
  input[type='checkbox']
  + label
  span {
  border: 2px solid var(--secondary);
}

.item-details
  .product-info
  .form-group.color-option
  .single-checkbox.checkbox-style-1
  input[type='checkbox']
  + label
  span::before {
  background-color: var(--secondary);
}

.item-details
  .product-info
  .form-group.color-option
  .single-checkbox.checkbox-style-2
  input[type='checkbox']
  + label
  span {
  border: 2px solid var(--primary);
}

.item-details
  .product-info
  .form-group.color-option
  .single-checkbox.checkbox-style-2
  input[type='checkbox']
  + label
  span::before {
  background-color: var(--primary);
}

.item-details
  .product-info
  .form-group.color-option
  .single-checkbox.checkbox-style-3
  input[type='checkbox']
  + label
  span {
  border: 2px solid #ca0f05;
}

.item-details
  .product-info
  .form-group.color-option
  .single-checkbox.checkbox-style-3
  input[type='checkbox']
  + label
  span::before {
  background-color: #ca0f05;
}

.item-details
  .product-info
  .form-group.color-option
  .single-checkbox.checkbox-style-4
  input[type='checkbox']
  + label
  span {
  border: 2px solid #029c07;
}

.item-details
  .product-info
  .form-group.color-option
  .single-checkbox.checkbox-style-4
  input[type='checkbox']
  + label
  span::before {
  background-color: #029c07;
}

.item-details
  .product-info
  .form-group.color-option
  .single-checkbox
  input[type='checkbox']:checked
  + label
  span {
  border-color: transparent;
}

.item-details
  .product-info
  .form-group.color-option
  .single-checkbox
  input[type='checkbox']:checked
  + label
  span::before {
  -webkit-transform: scale(1);
  transform: scale(1);
  border-radius: 50%;
  color: var(--white-full);
}

.item-details .product-info .form-group input:focus {
  outline: 0;
}

.item-details .product-info .form-group select:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.item-details .product-info .form-group label {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
}

.item-details .product-info .form-group select.form-control {
  padding-right: 38px;
  padding-left: 15px;
  background-position: center right 17px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDE4NS4zNDQgMTg1LjM0NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTg1LjM0NCAxODUuMzQ0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTkyLjY3MiwxNDQuMzczYy0yLjc1MiwwLTUuNDkzLTEuMDQ0LTcuNTkzLTMuMTM4TDMuMTQ1LDU5LjMwMWMtNC4xOTQtNC4xOTktNC4xOTQtMTAuOTkyLDAtMTUuMTggICAgYzQuMTk0LTQuMTk5LDEwLjk4Ny00LjE5OSwxNS4xOCwwbDc0LjM0Nyw3NC4zNDFsNzQuMzQ3LTc0LjM0MWM0LjE5NC00LjE5OSwxMC45ODctNC4xOTksMTUuMTgsMCAgICBjNC4xOTQsNC4xOTQsNC4xOTQsMTAuOTgxLDAsMTUuMThsLTgxLjkzOSw4MS45MzRDOTguMTY2LDE0My4zMjksOTUuNDE5LDE0NC4zNzMsOTIuNjcyLDE0NC4zNzN6IiBmaWxsPSIjNTA1MDUwIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  background-size: 10px 10px;
}

.item-details
  .product-info
  .form-group
  select.form-control:not([size]):not([multiple]) {
  height: 46px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #e1e1e1;
}

.item-details .product-info .quantity .inner-content {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.item-details .product-info .quantity .inner-content input.text {
  width: 60px;
  height: 46px;
  border: 1px solid #e1e1e1;
  font-size: 14px;
  font-weight: 500;
  border-right: none;
  border-left: none;
}

.item-details .product-info .quantity .inner-content input.button {
  width: 35px;
  height: 46px;
  background-color: var(--white-full);
  border: 1px solid #e1e1e1;
  font-size: 17px;
  font-weight: 500;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.item-details .product-info .quantity .inner-content input.button.first {
  border-radius: 4px 0px 0px 4px;
  overflow: hidden;
}

.item-details .product-info .quantity .inner-content input.button.last {
  border-radius: 0px 4px 4px 0px;
  overflow: hidden;
}

.item-details .product-info .quantity .inner-content input.button:hover {
  background-color: var(--primary);
  border-color: transparent;
  color: var(--white-full);
}

.item-details .product-info .cart-button {
  width: 100%;
}

.item-details .product-info .cart-button .btn {
  width: 100%;
  height: 46px;
  padding: 0;
}

.item-details .product-info .wish-button {
  display: inline-block;
  width: 100%;
}

@media (max-width: 767px) {
  .item-details .product-info .wish-button {
    margin-top: 12px;
  }
}

.item-details .product-info .wish-button .btn {
  display: inline-block;
  margin-right: 7px;
  border: 1px solid #eee;
  border-radius: 4px;
  color: #555;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  height: 46px;
  width: 100%;
}

.item-details .product-info .wish-button .btn:hover {
  color: var(--white-full);
  background-color: var(--primary);
  border-color: transparent;
}

.item-details .product-info .wish-button .btn:last-child {
  margin: 0;
}

.item-details .product-info .wish-button .btn i {
  font-size: 16px;
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.item-details .product-info .list-info {
  border-top: 1px solid #eee;
  margin-top: 30px;
  padding-top: 30px;
}

.item-details .product-info .list-info h4 {
  font-size: 20px;
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}

.item-details .product-info .list-info ul li {
  display: block;
  margin-bottom: 6px;
}

.item-details .product-info .list-info ul li:last-child {
  margin: 0;
}

.item-details .product-info .list-info ul li span {
  display: inline-block;
  font-weight: 500;
  min-width: 100px;
}

.item-details .product-info .bottom-content {
  margin-top: 20px;
}

.item-details .product-info .social-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-top: -5px;
}

@media (max-width: 767px) {
  .item-details .product-info .social-share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
  }
}

.item-details .product-info .social-share h4 {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  display: inline-block;
  margin-right: 13px;
  position: relative;
  top: 11px;
}

.item-details .product-info .social-share ul {
  display: inline-block;
  float: right;
}

@media (max-width: 767px) {
  .item-details .product-info .social-share ul {
    float: none;
  }
}

.item-details .product-info .social-share ul li {
  display: inline-block;
  margin-right: 2px;
  margin-top: 5px;
}

.item-details .product-info .social-share ul li:last-child {
  margin-right: 0;
}

.item-details .product-info .social-share ul li a {
  height: 30px;
  width: 30px;
  text-align: center;
  display: block;
  border-radius: 4px;
  border: 1px solid #eee;
  background-color: var(--white-full);
  color: var(--primary);
  line-height: 30px;
  font-size: 12px;
}

.item-details .product-info .social-share ul li a.facebook {
  color: #3b5999;
}

.item-details .product-info .social-share ul li a.facebook:hover {
  border-color: transparent;
  background-color: #3b5999;
  color: var(--white-full);
}

.item-details .product-info .social-share ul li a.twitter {
  color: #55acee;
}

.item-details .product-info .social-share ul li a.twitter:hover {
  border-color: transparent;
  background-color: #55acee;
  color: var(--white-full);
}

.item-details .product-info .social-share ul li a.google {
  color: #dd4b39;
}

.item-details .product-info .social-share ul li a.google:hover {
  border-color: transparent;
  background-color: #dd4b39;
  color: var(--white-full);
}

.item-details .product-info .social-share ul li a.linkedin {
  color: #0077b5;
}

.item-details .product-info .social-share ul li a.linkedin:hover {
  border-color: transparent;
  background-color: #0077b5;
  color: var(--white-full);
}

.item-details .product-info .social-share ul li a.pinterest {
  color: #bd081c;
}

.item-details .product-info .social-share ul li a.pinterest:hover {
  border-color: transparent;
  background-color: #bd081c;
  color: var(--white-full);
}

/* Product Details Info */

.product-details-info .single-block {
  /* background-color: var(--white-full); */
  /* padding: 30px; */
  /* border: 1px solid #eee; */
  /* border-radius: 4px; */
  margin-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .product-details-info .info-body.custom-responsive-margin {
    margin-bottom: 30px;
  }
}

.product-details-info .info-body h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.product-details-info .info-body p {
  margin: 20px 0;
}

.product-details-info .info-body .features li {
  display: block;
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.product-details-info .info-body .features li::before {
  position: absolute;
  content: '';
  left: 0;
  top: 8px;
  height: 6px;
  width: 6px;
  background-color: var(--primary);
  border-radius: 6px;
}

.product-details-info .info-body .features li:last-child {
  margin: 0;
}

.product-details-info .info-body .normal-list {
  margin-bottom: 30px;
}

.product-details-info .info-body .normal-list:last-child {
  margin-bottom: 0;
}

.product-details-info .info-body .normal-list li {
  display: block;
  margin-bottom: 12px;
  position: relative;
}

.product-details-info .info-body .normal-list li span {
  font-weight: 500;
  color: #555;
}

.product-details-info .info-body .normal-list li:last-child {
  margin: 0;
}

.product-details-info .give-review h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}

.product-details-info .give-review ul li {
  display: block;
  margin-bottom: 12px;
}

.product-details-info .give-review ul li span {
  color: #666;
  display: inline-block;
  margin-right: 8px;
  min-width: 80px;
}

.product-details-info .give-review ul li i {
  display: inline-block;
  color: #ffa000;
  font-size: 14px;
}

.product-details-info .give-review .review-btn {
  margin-top: 30px;
  padding: 12px 30px;
  width: 100%;
  background-color: #ffa000;
  color: var(--white-full);
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.product-details-info .give-review .review-btn:hover {
  color: var(--white-full);
  background-color: var(--secondary);
}

.product-details-info .reviews .title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}

.product-details-info .reviews .single-review {
  position: relative;
  padding-left: 80px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .product-details-info .reviews .single-review {
    padding-left: 0px;
  }
}

.product-details-info .reviews .single-review:last-child {
  margin-bottom: 0;
}

.product-details-info .reviews .single-review img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 767px) {
  .product-details-info .reviews .single-review img {
    height: 40px;
    width: 40px;
  }
}

.product-details-info .reviews .single-review .review-info {
  position: relative;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 25px;
}

@media (max-width: 767px) {
  .product-details-info .reviews .single-review .review-info {
    padding: 20px;
  }
}

.product-details-info .reviews .single-review .review-info::before {
  position: absolute;
  top: 12px;
  right: 100%;
  width: 0;
  height: 0;
  border: solid transparent;
  content: '';
  pointer-events: none;
  margin-top: 9px;
  border-width: 10px;
  border-color: transparent;
  border-right-color: #e5e5e5;
}

@media (max-width: 767px) {
  .product-details-info .reviews .single-review .review-info::before {
    top: 5px;
  }
}

.product-details-info .reviews .single-review .review-info::after {
  position: absolute;
  top: 12px;
  right: 100%;
  width: 0;
  height: 0;
  border: solid transparent;
  content: '';
  pointer-events: none;
  margin-top: 10px;
  border-width: 9px;
  border-color: transparent;
  border-right-color: var(--white-full);
}

@media (max-width: 767px) {
  .product-details-info .reviews .single-review .review-info::after {
    top: 5px;
  }
}

.product-details-info .reviews .single-review .review-info h4 {
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .product-details-info .reviews .single-review .review-info h4 {
    font-size: 14px;
  }
}

.product-details-info .reviews .single-review .review-info h4 span {
  font-size: 14px;
  display: block;
  color: #888;
  margin-top: 7px;
}

.product-details-info .reviews .single-review .review-info .stars {
  margin-top: 8px;
}

.product-details-info .reviews .single-review .review-info .stars li {
  display: inline-block;
  color: #ffa000;
  font-size: 14px;
}

.product-details-info .reviews .single-review .review-info p {
  margin-top: 15px;
}

.review-modal .modal-dialog {
  max-width: 600px;
}
.review-modal {
  z-index: 99999999;
}

.review-modal .modal-header {
  padding: 25px;
}

.review-modal .modal-header h5 {
  font-size: 20px;
  font-weight: 500;
}

.review-modal .modal-body {
  padding: 25px;
}

.review-modal .modal-body .form-group {
  margin-bottom: 15px;
}

.review-modal .modal-body .form-group label {
  font-size: 13px;
  margin-top: 0px !important;
  margin-bottom: 5px;
  display: block;
}

.review-modal .modal-body .form-group textarea,
.review-modal .modal-body .form-group select,
.review-modal .modal-body .form-group input {
  width: 100%;
  border: 1px solid #e6e2f5;
  border-radius: 4px;
  padding: 0px 18px;
  font-size: 14px;
}
.review-modal .modal-body .form-group textarea:focus,
.review-modal .modal-body .form-group select:focus,
.review-modal .modal-body .form-group input:focus {
  border: 1px solid var(--primary);
}
.review-modal .modal-body .form-group input {
  height: 45px;
}

.review-modal .modal-body .form-group select {
  padding-right: 38px;
  padding-left: 15px;
  background-position: center right 17px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDE4NS4zNDQgMTg1LjM0NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTg1LjM0NCAxODUuMzQ0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTkyLjY3MiwxNDQuMzczYy0yLjc1MiwwLTUuNDkzLTEuMDQ0LTcuNTkzLTMuMTM4TDMuMTQ1LDU5LjMwMWMtNC4xOTQtNC4xOTktNC4xOTQtMTAuOTkyLDAtMTUuMTggICAgYzQuMTk0LTQuMTk5LDEwLjk4Ny00LjE5OSwxNS4xOCwwbDc0LjM0Nyw3NC4zNDFsNzQuMzQ3LTc0LjM0MWM0LjE5NC00LjE5OSwxMC45ODctNC4xOTksMTUuMTgsMCAgICBjNC4xOTQsNC4xOTQsNC4xOTQsMTAuOTgxLDAsMTUuMThsLTgxLjkzOSw4MS45MzRDOTguMTY2LDE0My4zMjksOTUuNDE5LDE0NC4zNzMsOTIuNjcyLDE0NC4zNzN6IiBmaWxsPSIjNTA1MDUwIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  background-size: 10px 10px;
  font-size: 14px;
  font-weight: 500;
}

.review-modal .modal-body .form-group select:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.review-modal .modal-body .form-group select {
  height: 45px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #e1e1e1;
}

.review-modal .modal-body .form-group select:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.review-modal .modal-body .form-group textarea {
  padding: 18px;
  font-size: 14px;
}

.review-modal .modal-footer {
  padding: 25px;
}

/* Product Grids */
.product-grids {
  background-color: #f9f9f9;
}

.product-grids .product-grid-topbar {
  padding: 15px 20px;
  background-color: var(--white-full);
  border-radius: 4px;
  border: 1px solid #eee;
  padding-right: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .product-grids .product-grid-topbar {
    margin-top: 30px;
  }
}

.product-grids .product-grid-topbar .product-sorting label {
  display: inline-block;
  margin: 0;
  padding: 8px 5px 8px 0;
  color: #999;
  font-size: 14px;
  font-weight: normal;
}

.product-grids .product-grid-topbar .product-sorting .form-control {
  width: 100%;
  max-width: 186px;
  margin-right: 10px;
  display: inline-block;
}

.product-grids
  .product-grid-topbar
  .product-sorting
  select.form-control:not([size]):not([multiple]) {
  height: 42px;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #eee;
  padding-right: 38px;
  background-position: center right 17px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDE4NS4zNDQgMTg1LjM0NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTg1LjM0NCAxODUuMzQ0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTkyLjY3MiwxNDQuMzczYy0yLjc1MiwwLTUuNDkzLTEuMDQ0LTcuNTkzLTMuMTM4TDMuMTQ1LDU5LjMwMWMtNC4xOTQtNC4xOTktNC4xOTQtMTAuOTkyLDAtMTUuMTggICAgYzQuMTk0LTQuMTk5LDEwLjk4Ny00LjE5OSwxNS4xOCwwbDc0LjM0Nyw3NC4zNDFsNzQuMzQ3LTc0LjM0MWM0LjE5NC00LjE5OSwxMC45ODctNC4xOTksMTUuMTgsMCAgICBjNC4xOTQsNC4xOTQsNC4xOTQsMTAuOTgxLDAsMTUuMThsLTgxLjkzOSw4MS45MzRDOTguMTY2LDE0My4zMjksOTUuNDE5LDE0NC4zNzMsOTIuNjcyLDE0NC4zNzN6IiBmaWxsPSIjNTA1MDUwIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  background-size: 10px 10px;
}

.product-grids
  .product-grid-topbar
  .product-sorting
  select.form-control:not([size]):not([multiple]):focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.product-grids .product-grid-topbar .product-sorting .total-show-product {
  display: inline-block;
  color: #888;
  font-weight: 400;
  font-size: 14px;
}

@media (max-width: 767px) {
  .product-grids .product-grid-topbar .product-sorting .total-show-product {
    display: block;
    margin-top: 15px;
  }
}

.product-grids .product-grid-topbar .nav {
  border: none;
  float: right;
}

@media (max-width: 767px) {
  .product-grids .product-grid-topbar .nav {
    float: none;
    text-align: left;
    margin-top: 20px;
  }
}

.product-grids .product-grid-topbar .nav button {
  border: none;
  padding: 5px 10px 5px 10px;
  border: 1px solid #eee;
  border-radius: 4px;
  margin-right: 6px;
  font-size: 16px;
}

.product-grids .product-grid-topbar .nav button.active {
  background-color: var(--primary);
  border-color: transparent;
  color: var(--white-full);
}

.product-grids .product-grid-topbar .nav button:last-child {
  margin: 0;
}

/* Product Sidebar */
.product-sidebar .single-widget {
  background-color: var(--white-full);
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 4px;
  margin-bottom: 30px;
}
.custom-offcanvas .product-sidebar .single-widget {
  padding: 4px !important;
}

.product-sidebar .single-widget:last-child {
  margin-bottom: 0;
}

.product-sidebar .single-widget h3 {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e5e5;
  color: #232323;
  font-size: 15px;
  font-weight: 500;
}

.product-sidebar .single-widget.search form {
  position: relative;
}

.product-sidebar .single-widget.search form input {
  height: 50px;
  width: 100%;
  border: 1px solid #eee;
  border-radius: 6px;
  color: var(--secondary);
  padding: 0px 15px;
  padding-right: 50px;
}

.product-sidebar .single-widget.search form button {
  height: 40px;
  width: 40px;
  text-align: center;
  display: block;
  border-radius: 6px;
  border: none;
  background-color: transparent;
  color: var(--secondary);
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 16px;
}

.product-sidebar .single-widget.search form button:hover {
  color: var(--primary);
}

.product-sidebar .single-widget.range input {
  color: var(--secondary);
  cursor: pointer;
}

.product-sidebar .single-widget.range ::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--secondary);
  opacity: 1;
  /* Firefox */
}

.product-sidebar .single-widget.range :-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--secondary);
  opacity: 1;
  /* Firefox */
}

.product-sidebar .single-widget.range ::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--secondary);
  opacity: 1;
  /* Firefox */
}

.product-sidebar .single-widget.range ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--secondary);
  opacity: 1;
  /* Firefox */
}

.product-sidebar .single-widget.range :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--secondary);
}

.product-sidebar .single-widget.range ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--secondary);
}

.product-sidebar .single-widget.range .range-inner {
  position: relative;
  padding-left: 15px;
}

.product-sidebar .single-widget.range label {
  color: var(--secondary);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 15px;
}

.product-sidebar .single-widget.range #rangePrimary {
  display: inline-block;
  border: none;
}

.product-sidebar
  .single-widget.range
  input[type='range']::-webkit-slider-thumb {
  background: var(--primary) !important;
}

.product-sidebar .single-widget.range input[type='range']::-moz-range-thumb {
  background: var(--primary) !important;
}

.product-sidebar .single-widget.range input[type='range']::-ms-thumb {
  background: var(--primary) !important;
}

.product-sidebar .single-widget.condition .form-check {
  display: block;
  margin-bottom: 10px;
}
.form-check label {
  vertical-align: middle;
}
.product-sidebar .single-widget.condition .form-check:last-child {
  margin: 0;
}

.product-sidebar .single-widget.condition .form-check-label {
  cursor: pointer;
}

.product-sidebar .single-widget.condition .form-check-input {
  cursor: pointer;
  margin-top: 4px;
}

.product-sidebar .single-widget.condition .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.product-sidebar .single-widget .list li:last-child {
  margin: 0;
}
select:focus {
  box-shadow: none !important;
}
select .product-sidebar .single-widget .list li a {
  color: #444;
  position: relative;
  font-weight: 400;
  font-size: 15px;
  display: inline-block;
  margin-right: 3px;
}

.product-sidebar .single-widget .list li:hover a,
.product-sidebar .single-widget .list li:hover span {
  color: var(--white-full);
}
.product-sidebar .single-widget .list li {
  padding: 8px 14px;
  border-radius: 20px;
}
.product-sidebar .single-widget .list li:hover {
  color: var(--white-full);
  background-color: var(--primary);
}
.product-sidebar .single-widget .list li:hover {
  color: var(--white-full);
  background-color: var(--primary);
}

.product-sidebar .single-widget .list li span {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  color: var(--dark);
}

.product-sidebar .single-widget.banner a img {
  width: 100%;
}

/*======================================
   Start Shopping Cart CSS
========================================*/
.cart-list-head {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #eee;
}

.cart-list-title {
  background-color: var(--white-full);
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
}

@media (max-width: 767px) {
  .cart-list-title {
    text-align: center;
  }
}

.cart-list-title p {
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
}

@media (max-width: 767px) {
  .cart-list-title p {
    padding: 2px 0;
  }
}

@media (max-width: 767px) {
  .cart-single-list {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .cart-single-list a img {
    width: 50%;
    margin-bottom: 10px;
  }
}

.cart-single-list .remove-item {
  color: var(--white-full);
  background-color: #f44336;
  font-size: 24px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
}

@media (max-width: 767px) {
  .cart-single-list .remove-item {
    margin-top: 5px;
  }
}

.cart-single-list .remove-item:hover {
  color: var(--white-full);
  background-color: var(--secondary);
}

.cart-single-list .product-name {
  line-height: 22px;
}

.cart-single-list .product-name a {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.cart-single-list .product-des {
  display: block;
}

.cart-single-list .product-des span {
  font-size: 13px;
  font-weight: 500;
  display: block;
}

.cart-single-list .product-des span em {
  font-style: normal;
  color: #555;
}

.cart-single-list {
  padding: 30px 20px;
  background-color: var(--white-full);
  border-bottom: 1px solid #eee;
}

.cart-single-list:last-child {
  border: none !important;
  border-radius: 0 0 4px 4px;
}

.cart-single-list a:hover {
  color: var(--primary);
}

.shopping-cart .total-amount .right ul li {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
}

.shopping-cart .total-amount .right ul li span {
  display: inline-block;
  float: right;
}

.shopping-cart .total-amount .coupon {
  padding: 40px;
  border: 1px solid #eee;
  background-color: var(--white-full);
  border-radius: 4px;
  margin-top: 40px;
  display: inline-block;
}

@media (max-width: 767px) {
  .shopping-cart .total-amount .coupon {
    width: 100%;
    padding: 30px;
    margin-top: 30px;
  }
}

.shopping-cart .total-amount .coupon input {
  width: 300px;
  height: 46px;
  border: 1px solid #dddddd !important;
  overflow: hidden;
  border-radius: 4px;
  color: #333;
  padding: 0px 20px;
  display: inline-block;
}
.form-select:focus {
  border: 1px solid #dddddd !important;
}

@media (max-width: 767px) {
  .shopping-cart .total-amount .coupon input {
    width: 100%;
  }
}

.shopping-cart .total-amount .coupon .button {
  display: inline-block;
}

@media (max-width: 767px) {
  .shopping-cart .total-amount .coupon .button {
    display: block;
  }
}

.shopping-cart .total-amount .coupon button {
  border: none;
  height: 46px;
  display: inline-block;
  margin-left: 8px;
  position: relative;
  top: -2px;
}

@media (max-width: 767px) {
  .shopping-cart .total-amount .coupon button {
    margin: 0;
    margin-top: 10px;
    width: 100%;
  }
}

.shopping-cart .total-amount .right {
  padding: 20px;
  border: 1px solid #eee;
  background-color: var(--white-full);
  border-radius: 4px;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .shopping-cart .total-amount .right {
    padding: 30px;
    margin-top: 30px;
  }
}

.shopping-cart .total-amount .right .button {
  margin-top: 30px;
}

.shopping-cart .total-amount .right .btn {
  width: 100%;
  margin-bottom: 8px;
  text-align: center;
  padding: 12px 20px;
}

.shopping-cart .total-amount .right .btn:last-child {
  margin: 0;
}

@media (max-width: 767px) {
  .shopping-cart .count-input {
    padding: 10px 65px;
  }
}

@media (max-width: 767px) {
  .shopping-cart p {
    padding: 3px 0;
  }
}

.shopping-cart select.form-control:not([size]):not([multiple]) {
  height: 46px;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  width: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shopping-cart select.form-control:not([size]):not([multiple]) {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .shopping-cart select.form-control:not([size]):not([multiple]) {
    width: 100%;
  }
}

.shopping-cart select.form-control:not([size]):not([multiple]):focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.shopping-cart select.form-control {
  padding-right: 38px;
  background-position: center right 17px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDE4NS4zNDQgMTg1LjM0NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTg1LjM0NCAxODUuMzQ0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTkyLjY3MiwxNDQuMzczYy0yLjc1MiwwLTUuNDkzLTEuMDQ0LTcuNTkzLTMuMTM4TDMuMTQ1LDU5LjMwMWMtNC4xOTQtNC4xOTktNC4xOTQtMTAuOTkyLDAtMTUuMTggICAgYzQuMTk0LTQuMTk5LDEwLjk4Ny00LjE5OSwxNS4xOCwwbDc0LjM0Nyw3NC4zNDFsNzQuMzQ3LTc0LjM0MWM0LjE5NC00LjE5OSwxMC45ODctNC4xOTksMTUuMTgsMCAgICBjNC4xOTQsNC4xOTQsNC4xOTQsMTAuOTgxLDAsMTUuMThsLTgxLjkzOSw4MS45MzRDOTguMTY2LDE0My4zMjksOTUuNDE5LDE0NC4zNzMsOTIuNjcyLDE0NC4zNzN6IiBmaWxsPSIjNTA1MDUwIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  background-size: 10px 10px;
}

.shopping-cart .form-control {
  padding: 0 18px;
  -webkit-transition: color 0.25s, background-color 0.25s, border-color 0.25s;
  transition: color 0.25s, background-color 0.25s, border-color 0.25s;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background-color: var(--white-full);
  color: #505050;
  font-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.shopping-cart .form-control:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*======================================
   End Shopping Cart CSS
========================================*/
/*======================================
   Checkout CSS
========================================*/

.checkout-steps-form-style-1 #accordionExample li {
  margin-bottom: 20px;
}

.checkout-steps-form-style-1 #accordionExample li:last-child {
  margin: 0;
}

.checkout-steps-form-style-1 .title {
  font-size: 15px;
  font-weight: 600;
  line-height: 40px;
  position: relative;
  cursor: pointer;
  border: 1px solid #e6e6e6;
  border-radius: 4px 4px 0 0;
  padding: 8px 25px;
  color: var(--primary);
  background-color: var(--white-full);
}

.checkout-steps-form-style-1 .title.collapsed {
  border-radius: 4px;
  color: var(--secondary);
}

.checkout-steps-form-style-1 .title:before {
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'Lineicons';
  content: '\ea5e';
  font-size: 13px;
  color: #7d7d7d;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.checkout-steps-form-style-1 .checkout-steps-form-content {
  padding: 25px;
  padding-top: 0;
  border: 1px solid #e6e6e6;
  border-top-color: transparent;
  background-color: var(--white-full);
  border-radius: 0 0 4px 4px;
}

.checkout-steps-form-style-1 .single-form {
  margin-top: 16px;
  position: relative;
}

.checkout-steps-form-style-1 .single-form .form-input {
  position: relative;
}

@media (max-width: 767px) {
  .checkout-steps-form-style-1 .single-form .form-input {
    margin-bottom: 16px;
  }
  .checkout-steps-form-style-1 .single-form .form-input:last-child {
    margin-bottom: 0;
  }
}

.checkout-steps-form-style-1 .single-form .form-input textarea,
.checkout-steps-form-style-1 .single-form .form-input input {
  width: 100%;
  height: 46px;
  padding: 0 20px;
  border-radius: 4px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border: 1px solid #e6e6e6;
}

.checkout-steps-form-style-1 .single-form .form-input textarea:focus,
.checkout-steps-form-style-1 .single-form .form-input input:focus {
  border-color: var(--primary);
}

.checkout-steps-form-style-1 .form-default label {
  color: #888;
  margin-bottom: 8px;
}

.checkout-steps-form-style-1
  .select-items
  select.form-control:not([size]):not([multiple]) {
  height: 46px;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  width: 100%;
}

.checkout-steps-form-style-1
  .select-items
  select.form-control:not([size]):not([multiple]):focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.checkout-steps-form-style-1 .select-items select.form-control {
  padding-right: 38px;
  padding-left: 20px;
  background-position: center right 17px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDE4NS4zNDQgMTg1LjM0NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTg1LjM0NCAxODUuMzQ0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTkyLjY3MiwxNDQuMzczYy0yLjc1MiwwLTUuNDkzLTEuMDQ0LTcuNTkzLTMuMTM4TDMuMTQ1LDU5LjMwMWMtNC4xOTQtNC4xOTktNC4xOTQtMTAuOTkyLDAtMTUuMTggICAgYzQuMTk0LTQuMTk5LDEwLjk4Ny00LjE5OSwxNS4xOCwwbDc0LjM0Nyw3NC4zNDFsNzQuMzQ3LTc0LjM0MWM0LjE5NC00LjE5OSwxMC45ODctNC4xOTksMTUuMTgsMCAgICBjNC4xOTQsNC4xOTQsNC4xOTQsMTAuOTgxLDAsMTUuMThsLTgxLjkzOSw4MS45MzRDOTguMTY2LDE0My4zMjksOTUuNDE5LDE0NC4zNzMsOTIuNjcyLDE0NC4zNzN6IiBmaWxsPSIjNTA1MDUwIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  background-size: 10px 10px;
}

.checkout-steps-form-style-1 .single-checkbox {
  margin-top: 15px;
}

.checkout-steps-form-style-1 .single-checkbox label {
  font-size: 16px;
  margin-bottom: 0;
  position: relative;
  bottom: -2px;
}

.checkout-steps-form-style-1 .single-checkbox input[type='checkbox'] {
  display: none;
}

.checkout-steps-form-style-1
  .single-checkbox
  input[type='checkbox']
  + label
  span {
  border-color: var(--primary);
  width: 20px;
  height: 20px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 0 5px -3px 0;
  border: 1px solid #d5d5d5;
}

.checkout-steps-form-style-1
  .single-checkbox
  input[type='checkbox']
  + label
  span::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0);
  transform: scale(0);
  font-size: 10px;
  line-height: 1.2;
  background-color: var(--primary);
  font-family: 'Lineicons';
  content: '\ea5b';
  padding-left: 4px;
  padding-top: 3px;
  border-radius: 4px;
}

.checkout-steps-form-style-1
  .single-checkbox
  .single-checkbox
  input[type='checkbox']
  + label
  span {
  width: 20px;
  height: 20px;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 0 5px -3px 0;
}

.checkout-steps-form-style-1
  .single-checkbox
  input[type='checkbox']:checked
  + label
  span {
  border-color: transparent;
}

.checkout-steps-form-style-1
  .single-checkbox
  input[type='checkbox']:checked
  + label
  span::before {
  -webkit-transform: scale(1);
  transform: scale(1);
  border-radius: 4px;
  color: var(--white-full);
}

.checkout-steps-form-style-1 .single-checkbox p {
  display: inline;
  color: #777;
  padding-left: 5px;
}

.checkout-steps-form-style-1 .checkout-payment-option {
  margin-top: 16px;
}

.checkout-steps-form-style-1 .heading-6 {
  font-size: 14px;
  line-height: 18px;
  color: #666;
}

.checkout-steps-form-style-1 .payment-option-wrapper {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -4px;
  margin-right: -4px;
}

.checkout-steps-form-style-1 .single-payment-option {
  width: 25%;
  margin-top: 16px;
  padding: 0 4px;
}

@media (max-width: 767px) {
  .checkout-steps-form-style-1 .single-payment-option {
    width: 100%;
  }
}

.checkout-steps-form-style-1 .single-payment-option label {
  text-align: center;
  padding: 12px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-bottom: 0;
  width: 100%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  cursor: pointer;
  border: 1px solid #eee;
}

.checkout-steps-form-style-1 .single-payment-option input[type='radio'] {
  display: none;
}

.checkout-steps-form-style-1
  .single-payment-option
  input[type='radio']:checked
  + label {
  border-color: var(--primary);
  background-color: var(--white-full);
}

.checkout-steps-form-style-1 .single-payment-option p {
  font-size: 14px;
  font-weight: 400;
  color: #444;
}

.checkout-steps-form-style-1 .single-payment-option span {
  display: block;
}

.checkout-steps-form-style-1 .single-payment-option .price {
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  color: #444;
  margin-top: 4px;
}

.checkout-steps-form-style-1 .steps-form-btn {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .checkout-steps-form-style-1 .steps-form-btn .btn {
    width: 100%;
    margin: 0;
    margin-bottom: 10px;
  }
  .checkout-steps-form-style-1 .steps-form-btn .btn:last-child {
    margin-bottom: 0;
  }
}

.checkout-steps-form-style-1
  .checkout-payment-form
  .single-form
  .form-input
  img {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.checkout-steps-form-style-1
  .checkout-payment-form
  .payment-card-info
  .single-form {
  display: inline-block;
}

.checkout-steps-form-style-1
  .checkout-payment-form
  .payment-card-info
  .single-form
  .form-input {
  width: 145px;
}

.checkout-steps-form-style-1
  .checkout-payment-form
  .payment-card-info
  .single-form.mm-yy
  .form-input {
  margin-right: 15px;
}

.checkout-sidebar-coupon {
  background-color: var(--white-full);
  padding: 25px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .checkout-sidebar-coupon {
    margin-top: 30px;
  }
}

.checkout-sidebar-coupon .single-form {
  position: relative;
}

.checkout-sidebar-coupon .single-form .button {
  position: absolute;
  right: 0;
  top: 0;
}

.checkout-sidebar-coupon .single-form .button .btn {
  height: 46px;
}

.checkout-sidebar-coupon p {
  font-size: 14px;
  line-height: 20px;
  color: #888;
  margin-bottom: 12px;
}

.checkout-sidebar-coupon input {
  width: 100%;
  height: 46px;
  padding: 0 20px;
  border-radius: 4px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding-right: 120px;
}

.checkout-sidebar-price-table {
  background-color: var(--white-full);
  padding: 25px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
}

.checkout-sidebar-price-table .sub-total-price .total-price {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 4px 0;
}

.checkout-sidebar-price-table .price-table-btn {
  margin-top: 20px;
}

.checkout-sidebar-price-table .title {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: var(--secondary);
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
}

.checkout-sidebar-price-table .total-payable {
  padding: 8px 0;
  padding: 10px 0;
  border-top: 1px solid #e6e6e6;
  margin-top: 10px;
}

.checkout-sidebar-price-table .total-payable .payable-price {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.checkout-sidebar-banner {
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  overflow: hidden;
}

.checkout-sidebar-banner a {
  width: 100%;
}

.checkout-sidebar-banner a img {
  width: 100%;
}

/*======================================
	Account Login CSS
========================================*/

.account-login .login-form {
  padding: 42px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  background-color: var(--white-full);
  -webkit-box-shadow: 0px 5px 40px #00000008;
  box-shadow: 0px 5px 40px #00000008;
}

@media (max-width: 767px) {
  .account-login .login-form {
    padding: 30px;
  }
}

.account-login .login-form .card-body {
  padding: 0;
}

.account-login .login-form .title {
  margin-bottom: 30px;
}

.account-login .login-form .title h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.account-login .login-form .social-login .btn {
  padding: 10px 12px;
  font-size: 18px;
  border-radius: 4px;
  border: 1px solid #eee;
  display: block;
  font-weight: 600;
}

.account-login .login-form .social-login .btn i {
  display: inline-block;
  margin-right: 4px;
  font-size: 15px;
}

@media (max-width: 767px) {
  .account-login .login-form .social-login .btn {
    margin: 6px 0;
  }
}

.account-login .login-form .social-login .facebook-btn {
  border-color: #3b5998;
  background-color: transparent;
  color: #3b5998;
}

.account-login .login-form .social-login .facebook-btn:hover {
  background-color: #3b5998;
  border-color: transparent;
  color: var(--white-full);
}

.account-login .login-form .social-login .twitter-btn {
  border-color: #55acee;
  background-color: transparent;
  color: #55acee;
}

.account-login .login-form .social-login .twitter-btn:hover {
  background-color: #55acee;
  border-color: transparent;
  color: var(--white-full);
}

.account-login .login-form .social-login .google-btn {
  border-color: #dd4b39;
  background-color: transparent;
  color: #dd4b39;
}

.account-login .login-form .social-login .google-btn:hover {
  background-color: #dd4b39;
  border-color: transparent;
  color: var(--white-full);
}

.account-login .bottom-content {
  margin-top: 25px;
}

.account-login .alt-option {
  margin: 10px 0;
  text-align: center;
  display: inline-block;
  position: relative;
  width: 100%;
  z-index: 1;
}

@media (max-width: 767px) {
  .account-login .alt-option {
    margin: 10px 0;
  }
}

.account-login .alt-option span {
  font-size: 14px;
  background: var(--white-full);
  color: #888;
  padding: 5px 15px;
}

.account-login .alt-option:before {
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  width: 100%;
  background: #e6e6e6;
  content: '';
  z-index: -1;
}

.account-login .form-group {
  margin-bottom: 15px;
}

.account-login .form-group label {
  display: block;
  margin-bottom: 8px;
  width: fit-content;
}

.account-login .form-group .form-control {
  padding: 0 18px;
  -webkit-transition: color 0.25s, background-color 0.25s, border-color 0.25s;
  transition: color 0.25s, background-color 0.25s, border-color 0.25s;
  border: 1px solid #e0e0e0;
  background-color: var(--white-full);
  color: #505050;
  font-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 46px;
  border-radius: 4px !important;
  overflow: hidden;
  width: 100%;
}

.account-login .form-group .form-control:focus {
  border-color: var(--primary);
}

.account-login .lost-pass {
  color: #888;
}

.account-login .lost-pass:hover {
  color: var(--primary);
}

.account-login .button {
  margin-top: 30px;
}

.account-login .button .btn {
  width: 100%;
}

.account-login .outer-link {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-p);
  margin-top: 15px;
  text-align: center;
}

.account-login .outer-link a {
  color: var(--primary);
}

.account-login .outer-link a:hover {
  text-decoration: underline;
}

/* Register Form */
.register-form {
  padding: 40px;
  /* border: 1px solid #e6e6e6; */
  border-radius: 4px;
  background-color: var(--white-full);
  /* -webkit-box-shadow: 0px 5px 40px #00000008; */
  /* box-shadow: 0px 5px 40px #00000008; */
}

@media (max-width: 767px) {
  .register-form {
    padding: 30px;
  }
}

.register-form .title {
  margin-bottom: 30px;
}

.register-form .title h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.register-form .form-group label {
  display: block;
  margin-bottom: 8px;
}

.register-form .form-group .form-control {
  padding: 0 18px;
  -webkit-transition: color 0.25s, background-color 0.25s, border-color 0.25s;
  transition: color 0.25s, background-color 0.25s, border-color 0.25s;
  border: 1px solid #e0e0e0;
  background-color: var(--white-full);
  color: #505050;
  font-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 46px;
  border-radius: 4px !important;
  overflow: hidden;
}

.register-form .button {
  margin-top: 10px;
}

@media (max-width: 767px) {
  .register-form .button {
    margin-top: 10px;
  }
}

.register-form .button .btn {
  width: 100%;
}

.register-form .outer-link {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-p);
  margin-top: 30px;
  text-align: center;
}

.register-form .outer-link a {
  color: var(--primary);
}

.register-form .outer-link a:hover {
  text-decoration: underline;
}

/*======================================
	Contact CSS
========================================*/
.contact-us {
  position: relative;
  /* background-color: var(--white-full); */
}

.contact-us .contact-info .single-info-head {
  margin-top: 30px;
  background-color: #f9f9f9;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .contact-us .contact-info .single-info-head {
    margin-top: 20px;
  }
}

.contact-us .contact-info .single-info {
  margin-bottom: 30px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: left;
}

.contact-us .contact-info .single-info:last-child {
  margin-bottom: 0;
}

.contact-us .contact-info .single-info i {
  font-size: 30px;
  color: var(--primary);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 11px;
}

.contact-us .contact-info .single-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-us .contact-info .single-info ul li {
  display: block;
  margin-bottom: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-us .contact-info .single-info ul li:last-child {
  margin: 0;
}

.contact-us .contact-info .single-info ul li a {
  color: #888;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-us .contact-info .single-info ul li a:hover {
  color: var(--primary);
}

/* Contact Form Head */
.contact-form-head {
  margin-top: 30px;
}

.contact-form-head .contact-inner-title h2 {
  font-size: 30px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  color: var(--white-full);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-form-head .contact-inner-title h2 {
    font-size: 25px;
    line-height: 32px;
  }
}

@media (max-width: 767px) {
  .contact-form-head .contact-inner-title h2 {
    font-size: 20px;
    line-height: 30px;
  }
}

.contact-form-head .contact-inner-title p {
  color: var(--white-full);
}

.contact-form-head .contact-inner-title .question {
  display: block;
  min-height: 70px;
  margin-top: 40px;
}

.contact-form-head .contact-inner-title .question img {
  height: 70px;
  width: 70px;
  border-radius: 70px;
  float: left;
  margin-right: 20px;
}

.contact-form-head .contact-inner-title .question h4 {
  font-size: 20px;
  font-weight: 600;
  padding-top: 15px;
  color: var(--white-full);
}

.contact-form-head .contact-inner-title .question h4 span {
  font-size: 13px;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}

.contact-form-head .contact-inner-title .day-list {
  display: block;
  margin-top: 40px;
}

.contact-form-head .contact-inner-title .day-list li {
  color: var(--white-full);
  font-weight: 500;
  margin-bottom: 3px;
  display: block;
}

.contact-form-head .contact-inner-title .day-list li:last-child {
  margin: 0;
}

.contact-form-head .contact-inner-title .call-back {
  font-size: 15px;
  font-weight: 500;
  color: var(--white-full);
  display: inline-block;
  margin-top: 30px;
  text-transform: capitalize;
}

.contact-form-head .contact-inner-title .call-back i {
  font-size: 15px;
  display: inline-block;
  margin-left: 5px;
}

.contact-form-head .form-main {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 40px;
  background-color: var(--white-full);
  border: 1px solid #eee;

  border-radius: 4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .contact-form-head .form-main {
    padding: 35px;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .contact-form-head .form-main {
    padding: 12px;
  }
}

.contact-form-head .form-main .form-title {
  margin-bottom: 30px;
}

.contact-form-head .form-main .form-title h2 {
  margin-bottom: 35px;
  font-size: 22px;
}

.contact-form-head .form-main .form-title p {
  font-size: 16px;
}

.contact-form-head .form-main .form .form-group {
  margin-bottom: 30px;
  display: block;
}

.contact-form-head .form-main .form .form-group input,
.contact-form-head .form-main .form .form-group select,
.checkout-step select,
.checkout-step input:not([type='radio']) {
  height: 52px;
  line-height: 52px;
  padding: 0px 20px;
  width: 100%;
}
.checkout-step .position-relative {
  margin-top: 30px !important;
}
.contact-form-head .form-main .form .form-group input,
.contact-form-head .form-main .form .form-group select,
.checkout-step input,
.checkout-step select {
  border: 1px solid #e6e2f5;
  color: #333;
  font-weight: 400;
  border-radius: 4px;
  background-color: var(--white-full);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.contact-form-head .form-main .form .form-group input:focus,
.contact-form-head .form-main .form .form-group select:focus,
.contact-form-head .form-main .form .form-group select:focus-visible {
  border-color: var(--primary) !important;
  outline: none !important;
}

.contact-form-head .form-main .form .form-group textarea {
  height: 180px;
  width: 100%;
  border: 1px solid #e6e2f5;
  padding: 15px 20px;
  color: #333;
  resize: none;
  font-weight: 400;
  resize: vertical;
  border-radius: 4px;
  background-color: var(--white-full);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.contact-form-head .form-main .form .form-group textarea:focus {
  border-color: var(--primary);
}

.contact-form-head .form-main .form .form-group.button {
  width: 100%;
  margin-bottom: 0;
}

.map-section {
  background-color: #f9f9f9;
}

.map-section .mapouter {
  height: 500px;
}

.map-section .mapouter .gmap_canvas {
  height: 500px;
}

.map-section .mapouter .gmap_canvas iframe {
  height: 500px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .map-section .mapouter {
    height: 400px;
  }
  .map-section .mapouter .gmap_canvas {
    height: 400px;
  }
  .map-section .mapouter .gmap_canvas iframe {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .map-section .mapouter {
    height: 300px;
  }
  .map-section .mapouter .gmap_canvas {
    height: 300px;
  }
  .map-section .mapouter .gmap_canvas iframe {
    height: 300px;
  }
}

/*======================================
	Error 404 CSS
========================================*/
.error-area {
  height: 100vh;
  text-align: center;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--white-full);
  position: relative;
  background-image: url('../images/error/404-bg.png');
  background-repeat: no-repeat;
  background-position: center;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table {
  display: table !important;
}

.d-table-cell {
  vertical-align: middle;
}

.d-table-cell {
  display: table-cell !important;
}

.error-area .error-content h1 {
  font-size: 100px;
  color: var(--primary);
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .error-area .error-content h1 {
    font-size: 60px;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  .error-area .error-content h1 {
    font-size: 45px;
    line-height: 30px;
  }
}

.error-area .error-content h2 {
  font-size: 25px;
  margin-bottom: 10px;
  color: var(--secondary);
  font-weight: 700;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .error-area .error-content h2 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .error-area .error-content h2 {
    font-size: 18px;
  }
}

.error-area .error-content p {
  font-weight: 400;
  margin-bottom: 40px;
  color: #888;
}

/*======================================
	Mail Success CSS
========================================*/
.maill-success {
  height: 100vh;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table {
  display: table !important;
}

.d-table-cell {
  vertical-align: middle;
}

.d-table-cell {
  display: table-cell !important;
}

.maill-success .success-content i {
  font-size: 30px;
  margin-bottom: 20px;
  color: var(--primary);
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  display: inline-block;
  border: 1px solid #eee;
  border-radius: 50%;
}

.maill-success .success-content h2 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .maill-success .success-content h2 {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .maill-success .success-content h2 {
    font-size: 15px;
  }
}

.maill-success .success-content p {
  font-weight: 400;
  margin-bottom: 20px;
}

/*======================================
	Footer CSS
========================================*/
.footer {
  background-color: var(--dark);
  position: relative;
  /* Single Footer */
  /* End Single Footer */
}

.footer .footer-top .inner-content {
  padding: 60px 0;
  border-bottom: 1px solid #ffffff26;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .footer-top .inner-content {
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  .footer .footer-top .inner-content {
    padding: 40px 0;
    text-align: center;
  }
}
.footer-logo {
  margin-bottom: 24px;
}
.footer .footer-top .footer-logo a img {
  width: 200px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .footer-top .footer-logo a img {
    width: 190px;
  }
}

@media (max-width: 767px) {
  .footer .footer-top .footer-logo a img {
    width: 180px;
  }
}

@media (max-width: 767px) {
  .footer .footer-top .footer-newsletter {
    padding: 0px 20px;
  }
}

.footer .footer-top .footer-newsletter .title {
  color: var(--white-full);
  font-size: 20px;
  font-weight: 800;
  float: left;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .footer-top .footer-newsletter .title {
    margin-bottom: 20px;
    display: block;
  }
}

@media (max-width: 767px) {
  .footer .footer-top .footer-newsletter .title {
    margin-bottom: 20px;
    display: block;
    font-size: 18px;
    width: 100%;
  }
}

.footer .footer-top .footer-newsletter .title span {
  color: #c2c2c2;
  display: block;
  font-size: 14px;
  margin-top: 5px;
  font-weight: 400;
}

@media (max-width: 767px) {
  .footer .footer-top .footer-newsletter .title span {
    margin-top: 10px;
  }
}

.footer .footer-top .footer-newsletter .newsletter-form {
  float: right;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .footer-top .footer-newsletter .newsletter-form {
    float: none;
  }
}

@media (max-width: 767px) {
  .footer .footer-top .footer-newsletter .newsletter-form {
    float: none;
    margin-top: 20px;
  }
}

.footer .footer-top .footer-newsletter .newsletter-form input {
  height: 50px;
  background-color: rgba(255, 255, 255, 0.308);
  border-radius: 4px;
  width: 300px;
  display: inline-block;
  border: none;
  padding: 0px 20px;
  color: var(--white-full);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer .footer-top .footer-newsletter .newsletter-form input {
    width: 240px;
  }
}

@media (max-width: 767px) {
  .footer .footer-top .footer-newsletter .newsletter-form input {
    width: 100%;
    text-align: center;
  }
}

.footer
  .footer-top
  .footer-newsletter
  .newsletter-form
  input::-webkit-input-placeholder {
  color: var(--white-full);
}

.footer
  .footer-top
  .footer-newsletter
  .newsletter-form
  input:-ms-input-placeholder {
  color: var(--white-full);
}

.footer
  .footer-top
  .footer-newsletter
  .newsletter-form
  input::-ms-input-placeholder {
  color: var(--white-full);
}

.footer .footer-top .footer-newsletter .newsletter-form input::placeholder {
  color: var(--white-full);
}

.footer .footer-top .footer-newsletter .newsletter-form .button {
  display: inline-block;
  margin-left: 6px;
  position: relative;
  top: -2px;
}

@media (max-width: 767px) {
  .footer .footer-top .footer-newsletter .newsletter-form .button {
    margin: 0;
    margin-top: 10px;
    top: 0;
    width: 100%;
  }
}

.footer .footer-top .footer-newsletter .newsletter-form .button .btn {
  height: 50px;
}

@media (max-width: 767px) {
  .footer .footer-top .footer-newsletter .newsletter-form .button .btn {
    width: 100%;
  }
}

.footer .footer-top .footer-newsletter .newsletter-form .button .btn:hover {
  color: var(--dark);
  background-color: var(--white-full);
}

.footer .footer-middle {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .footer-middle {
    padding-top: 30px;
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .footer .footer-middle {
    padding-top: 10px;
    padding-bottom: 50px;
  }
}

.footer .footer-middle .newsletter-form input {
  width: 100%;
  border-radius: 4px;
  padding: 0px 20px;
  height: 50px;
  border: 1px solid #eee;
}

.footer .footer-middle .newsletter-form .button {
  margin-top: 12px;
}

.footer .footer-middle .newsletter-form .button .btn {
  background-color: var(--secondary);
  color: var(--white-full);
}

.footer .footer-middle .newsletter-form .button .btn:hover {
  background-color: var(--primary);
  color: var(--white-full);
}

.footer .footer-middle .newsletter-form p {
  color: #888;
  margin-top: 20px;
}

/* .footer .single-footer {
  margin-top: 40px;
} */

@media (max-width: 767px) {
  h1,
  .font-50 {
    font-size: 36px !important;
  }
  .footer .single-footer {
    margin-top: 30px;
    /* text-align: center; */
  }
}

.footer .single-footer h3 {
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 15px;
  color: var(--white-full);
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
}

.footer .single-footer h3::before {
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary);
  content: '';
}

@media (max-width: 767px) {
  .footer .single-footer h3::before {
    left: 26px;
    margin-left: -20px;
  }
}

.footer .single-footer.f-link ul li {
  display: block;
  margin-bottom: 12px;
  position: relative;
}

.footer .single-footer.f-link ul li:last-child {
  margin-bottom: 0;
}

.footer .single-footer.f-link ul li a {
  color: #d6d6d6;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.footer .single-footer.f-link ul li a:hover {
  padding-left: 5px;
  color: var(--primary);
}

.footer .single-footer.f-contact .phone {
  color: #d6d6d6;
}

.footer .single-footer.f-contact ul {
  margin: 10px 0;
}

.footer .single-footer.f-contact ul li {
  display: block;
  margin-bottom: 10px;
  color: #d6d6d6;
}

.footer .single-footer.f-contact ul li span {
  display: block;
}

.footer .single-footer.f-contact ul li:last-child {
  margin: 0;
}

.footer .single-footer.f-contact ul li span {
  color: #d6d6d6;
}

.footer .single-footer.f-contact .mail a,
.footer .single-footer.f-contact .phone a {
  color: #d6d6d6;
}

.footer .single-footer.f-contact .mail a:hover,
.footer .single-footer.f-contact .phone a:hover {
  color: var(--primary);
}

.footer .single-footer.our-app .app-btn li {
  display: block;
  margin-bottom: 15px;
}

.footer .single-footer.our-app .app-btn li:last-child {
  margin-bottom: 0;
}

.footer .single-footer.our-app .app-btn li span {
  display: block !important;
}

.footer .single-footer.our-app .app-btn li a {
  position: relative;
  padding-left: 40px;
  border-radius: 4px;
  padding: 15px 30px;
  padding-left: 60px;
  color: var(--white-full);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #ffffff0f;
}

.footer .single-footer.our-app .app-btn li a i {
  font-size: 27px;
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer .single-footer.our-app .app-btn li a .small-title {
  font-size: 13px;
  display: block;
  color: var(--white-full);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer .single-footer.our-app .app-btn li a .big-title {
  font-size: 14px;
  font-weight: 500;
  display: block;
  color: var(--white-full);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer .single-footer.our-app .app-btn li a:hover {
  background-color: var(--primary);
  color: var(--white-full);
  border-color: transparent;
}

.footer .single-footer.our-app .app-btn li a:hover .small-title {
  color: var(--white-full);
}

.footer .single-footer.our-app .app-btn li a:hover .big-title {
  color: var(--white-full);
}

.footer .footer-bottom .inner-content {
  border-top: 1px solid #ffffff26;
  padding: 12px 0;
}
.footer-bottom a {
  color: var(--white-full);
}
.footer-bottom a:hover {
  color: var(--accent);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .footer .footer-bottom .inner-content {
    text-align: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .footer .footer-bottom .payment-gateway {
    margin-bottom: 12px;
  }
}

.footer .footer-bottom .payment-gateway span {
  display: inline-block;
  margin-right: 12px;
  color: var(--white-full);
}

@media (max-width: 767px) {
  .footer .footer-bottom .payment-gateway span {
    display: block;
    margin: 0;
    margin-bottom: 10px;
  }
}
.single-footer.f-contact p {
  font-size: 14px !important ;
}
.footer .footer-bottom .payment-gateway img {
  width: 200px;
}

.footer .footer-bottom .copyright {
  text-align: left;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .footer .footer-bottom .copyright {
    margin-bottom: 12px;
  }
}

.footer .footer-bottom .copyright p {
  color: var(--white-full);
}

.footer .footer-bottom .copyright p a {
  color: #eee;
  display: inline-block;
  margin-left: 4px;
}

.footer .footer-bottom .copyright p a:hover {
  color: var(--primary);
}

.footer .socila {
  display: flex;
  margin-top: 10px;
  gap: 12px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .footer .socila {
    float: none;
    text-align: center;
  }
}

.footer .socila li {
  margin: 0;
  margin-right: 5px;
  display: inline-block;
}

.footer .socila li:last-child {
  margin: 0;
}

.footer .socila li a {
  height: 35px;
  width: 35px;
  text-align: center;
  display: block;
  color: var(--white-full);
  border-radius: 50%;
  line-height: 35px;
  font-size: 15px;
}

.footer .socila li a:hover {
  background-color: var(--primary);
  color: var(--white-full);
  border-color: transparent;
}

.footer .socila li span {
  display: inline-block;
  color: var(--white-full);
  margin-right: 12px;
}

@media (max-width: 767px) {
  .footer .socila li span {
    display: none;
  }
}
@media (max-width: 1200px) {
  .navbar-nav .nav-item {
    margin-right: 30px !important;
  }
}
.btn-dark {
  background-color: var(--secondary) !important;
}

.ticker-wrap {
  overflow: hidden;
  position: relative;
  color: var(--white-full);
  background: var(--dark); /* premium dark background */
}

.ticker {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: tickerMove 30s linear infinite;
  font-size: 16px; /* bigger font */
  font-weight: 500; /* premium bold */
  font-style: italic; /* slight italic */
  letter-spacing: 0.5px; /* premium spacing */
  transform: skewX(-4deg); /* stylish premium tilt */
}

.ticker span {
  display: inline-block;
  color: var(--white-full) !important;
}

/* .ticker-wrap:hover .ticker {
  animation-play-state: paused;
} */

/* Animation */
@keyframes tickerMove {
  0% {
    transform: translateX(100%) skewX(-4deg);
  }
  100% {
    transform: translateX(-100%) skewX(-4deg);
  }
}
.product-card {
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--white-full);
}
.product-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.product-card img {
  width: 100%;
  border-bottom: 1px solid #f1f1f1;
  transition: 0.3s;
}
.product-card:hover img {
  transform: scale(1.05);
}
.product-info {
  padding: 18px;
}
.product-category {
  font-size: 14px;
  font-weight: 600;
  color: #777;
  text-transform: uppercase;
}
.product-title {
  font-size: 18px;
  font-weight: 700;
  margin: 6px 0 10px;
}
.product-title a {
  color: var(--dark);
  text-decoration: none;
}
.product-title a:hover {
  color: #444;
}
.price-box {
  margin-top: 10px;
}
.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 15px;
}
.new-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}
.options-count {
  font-size: 13px;
  color: #666;
  margin-top: 5px;
}
.product-desc {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
  line-height: 1.4;
}
.add-btn {
  width: 100%;
  border-radius: 10px;
  padding: 10px 0;
  font-weight: 600;
}
.text-sm {
  font-size: 14px !important;
}
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.my-product-slider .single-product h4 a {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.fs-16 {
  font-size: 16px !important;
}
.category-modern {
  color: var(--accent);
}
.category-modern:hover {
  color: #1b263b;
}
.my-product-slider .single-product {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  /*min-height: 423px !important;*/
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .my-product-slider .single-product {
    height: 100% !important;
    margin: 0 !important;
  }
  .hero-area .slider-head {
    height: calc(100vh - 134px) !important;
  }
}
/* SIDEBAR BOX */
.product-sidebar .single-widget {
  padding: 20px 10px !important;
  background: var(--white-full);
  border-radius: 10px;
  margin-bottom: 25px;
  border: 1px solid #f1f1f1;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.06);
}

/* WIDGET TITLE */
.product-sidebar .single-widget h3 {
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 600;
  color: #222;
}

/* SEARCH */
.single-widget.search form {
  position: relative;
}
.single-widget.search input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
}
.single-widget.search button {
  position: absolute;
  right: 12px;
  top: 9px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #555;
}

/* SELECT DROPDOWN */
.single-widget select {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
  color: #444;
}

/* CATEGORY LIST */
.single-widget .list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.single-widget .list li a {
  color: #333;
  font-size: 15px;
}

.single-widget .list li a:hover {
  color: #0059ff;
}

/* CHECKBOX DESIGN */
.single-widget .form-check {
  margin-bottom: 10px;
}

.single-widget .form-check-label {
  font-size: 15px;
  color: #444;
}

/* SIDEBAR SPACING */
.product-sidebar {
  padding-right: 10px;
}
.product-grids .single-product {
  margin-top: 0 !important;
}
.gap-y-3 {
  row-gap: 16px !important;
}
.top-140 {
  top: 140px !important;
}
.custom-offcanvas {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: var(--white-full);
  z-index: 99999;
  overflow-y: auto;
  padding: 10px;
  transition: all 0.35s ease;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
}

.custom-offcanvas.active {
  left: 0;
}

@media (min-width: 992px) {
  .custom-offcanvas {
    position: static;
    height: auto;
    width: 100%;
    left: 0 !important;
    box-shadow: none;
  }

  #openSidebar {
    display: none !important;
  }
}
.category i {
  transition: transform 0.2s;
}
.category i:hover {
  transform: scale(1.2);
}
.text-yellow {
  color: #ffde21 !important;
}


.size-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

/* SIZE BOX */
.size-box {
  background: var(--white-full);
  border: 1px solid #e2e8f0;
  border-radius: 14px; /* slightly more rounded for Apple feel */
  padding: 10px 4px; /* slightly compact */
  display: flex; /* flex needed for icon + text */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px; /* slightly tighter */
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

/* ICON */
.size-box i {
  font-size: 1.2rem;
  color: var(--primary); 
}

/* TEXT */
.size-box span {
  font-size: 13px;
  font-weight: 500;
  color: #1c1c1e; 
  line-height: 1.2;
}

/* HOVER EFFECT */
.size-box:hover {
  border-color: var(--primary);
  transform: translateY(-2px) scale(1.02);
  background: rgba(0, 122, 255, 0.03);
}

/* ACTIVE / SELECTED */
.size-box.active {
  border-color: var(--primary);
  background: linear-gradient(
    180deg,
    rgba(0, 122, 255, 0.08),
    rgba(0, 122, 255, 0.03)
  );
  transform: translateY(-1px);
}

/* MOBILE & RESPONSIVE */
@media (max-width: 1024px) {
  .size-selector {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .size-selector {
    grid-template-columns: 1fr;
  }
}

.btn-outline-secondary {
  border-radius: 8px;
}
.btn-success {
  border-radius: 8px;
}
.input-group .form-control {
  height: 38px;
}
.input-group .btn {
  border-radius: 8px;
}

/* Parent row equal height */
.contact-boxes > div {
  display: flex;
}

/* Card */
.info-card {
  background: var(--primary);
  color: var(--white-full);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  width: 100%;
  height: 100%; /* SAME HEIGHT */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Card Hover */
.info-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(45deg);
  transition: all 0.5s ease;
  z-index: -1;
}

.info-card:hover::before {
  top: 0;
  left: 0;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
}

/* Icon circle background */
.icon {
  font-size: 28px;
  color: var(--white-full);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.info-card:hover .icon {
  background: #f5f5f5;
  color: var(--primary);
  transform: scale(1.2);
}

/* Titles */
.info-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--white-full);
}

/* Paragraph */
.info-card p,
.info-card a {
  font-size: 14px;
  line-height: 1.6;
  color: #f0f0f0;
  text-decoration: none;
}

/* Social Icons */
.social-wrap {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 12px;
}

.social-wrap a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-wrap a i {
  font-size: 18px;
  color: var(--white-full);
  transition: all 0.3s ease;
}

/* Social Hover */
.social-wrap a:hover {
  background: var(--white-full);
}
.social-wrap a:hover svg path {
  fill: var(--primary);
}

.social-wrap a:hover i {
  color: var(--primary);
  transform: scale(1.2);
}
.faq-header {
  position: sticky;
  top: 100px; /* adjust according to navbar height */
}

.accordion-button {
  font-weight: 500;
  color: #1b263b;
  transition: all 0.3s ease;
}

.accordion-button i {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.accordion-button.collapsed i {
  transform: rotate(0deg) translateY(-50%);
}

.accordion-button:not(.collapsed) i {
  transform: translateY(-50%) rotate(360deg);
}

.accordion-body {
  color: #495057;
  font-size: 14px;
  line-height: 1.6;
}

.accordion-item + .accordion-item {
  margin-top: 10px;
}
.w-120 {
  width: 120px !important;
}
.testmonial-profile {
  height: 80px;
  width: 80px;
  object-fit: cover;
}
.lni-quotation {
  font-size: 44px !important;
}
.bg-light-pri {
  background-color: var(--primary);
}
.btn.bg-light-pri:hover {
  background-color: var(--secondary) !important;
}
.btn.bg-primary:hover {
  background-color: var(--primary) !important;
}
.btn-outline-secondary:hover {
  background-color: var(--primary) !important;
}

.checkout-step {
  display: none;
  transition: all 0.3s ease;
}
.checkout-step.step-active {
  display: block;
}
.btn-next,
.btn-prev {
  min-width: 120px;
}
.checkout-steps-indicator {
  font-weight: 500;
  font-size: 0.95rem;
}
.checkout-steps-indicator .step-indicator {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  background: #e1e1ff;
  border-radius: 6px;
  margin: 0 4px;
  color: #555;
  cursor: default;
}
.checkout-steps-indicator .step-indicator.step-active {
  background: var(--primary);
  color: var(--white-full);
  font-weight: 600;
}
.checkout-steps-indicator .step-indicator.completed {
  background: #198754;
  color: var(--white-full);
}
.special-offer .offer-content h2.font-50 {
  color: var(--dark);
}
.slider-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  inset: 0;
}
.slider-overlay + div {
  z-index: 99;
  position: relative;
}
.navbar-search {
  position: relative;
}

/* DROPDOWN BOX */
.search-dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  min-width: 350px;
  max-height: 350px;
  overflow-y: auto;
  background: #fff;
  border-radius: 12px;
  padding: 30px 0 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.18);
  z-index: 9999;
}

/* LIST ITEMS */
.search-dropdown ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.search-dropdown ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  cursor: pointer;
  transition: 0.3s;
}

.search-dropdown ul li:last-child {
  border-bottom: none;
}

.search-dropdown ul li:hover {
  background: var(--sec-bg);
}

/* IMAGE */
.search-dropdown ul li img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

/* TEXT AREA */
.search-dropdown .info h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.search-dropdown .info p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #555;
}
.search-dropdown .close-btn {
  position: absolute;
  width: 20px;
  top: 6px;
  right: 10px;
  background: var(--secondary);
  border: none;
  font-size: 8px;
  height: 20px;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
}
.search-dropdown .close-btn:hover {
  opacity: 0.7;
}
.accordion-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  color: #333;
  background-color: #f9f9f9;
}

.accordion-button.collapsed {
  background-color: #fff;
}

.accordion-body {
  background-color: #fff;
  color: #555;
}
.whatsapp-float {
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 80px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 4px;
  text-align: center;
  font-size: 24px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #20b856;
  color: var(--white-full) !important;
  transform: scale(1.1);
}
.mission-card {
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  padding-top: 50px;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-card h5 {
  font-weight: 600;
  color: #0d1b2a;
}

.mission-card p {
  color: #415a77;
  font-size: 0.95rem;
  line-height: 1.5;
}
/* Tiny slider arrows hide */
#customize-ow button {
  display: none !important;
}
#customize > .tns-item {
  text-align: center !important;
}
.product-image #customize-ow .tns-item img {
  max-width: 100% !important;
}
.view-link {
  color: var(--primary);
  font-size: 14px;
}
.view-link:hover {
  color: var(--accent);
}
.testimonial-item .lni-quotation {
  color: var(--dark-p);
}
.my-product-slider .single-product {
  height: fit-content !important;
}
/* TAB WRAPPER */
#productTab {
  border-bottom: none;
  margin-top: 25px;
  gap: 10px;
  display: flex;
}

/* BUTTON STYLE TABS */
#productTab .nav-link {
  background: #f5f5f5;
  border: 1px solid #ddd !important;
  color: #333 !important;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

/* Hover effect */
#productTab .nav-link:hover {
  background: #eaeaea;
  border-color: #ccc !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* ACTIVE TAB */
#productTab .nav-link.active {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Remove underline line */
#productTab .nav-link::after {
  display: none !important;
}

/* TAB BODY */
.tab-content .tab-pane {
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  margin-top: 15px;
}

/* Mobile responsive */
@media (max-width: 575px) {
  #productTab {
    flex-wrap: wrap;
  }
  #productTab .nav-link {
    width: 48%;
    text-align: center;
    padding: 10px 12px;
  }
}
.checkout-sidebar ul li span:nth-child(1) {
  color: var(--dark) !important;
}

#copyPersonalDetails {
  width: 20px !important;
  height: 20px !important;
  margin-right: 12px !important;
  line-height: 20px;
  padding: 0 !important;
}
.payment-box {
  background: #f8f9fa;
  border: 1px solid #ddd;
  transition: 0.3s ease;
  cursor: pointer;
}

.payment-box:hover {
  border-color: var(--primary);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.form-check-input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.payment-box img {
  opacity: 0.8;
}

.payment-box:hover img {
  opacity: 1;
  transform: scale(1.05);
  transition: 0.3s;
}
/* FORM WRAPPER */
.account-login {
  padding: 40px 0;
}

/* LEFT FORM CARD */
.card.login-form,
.register-form {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  /* border: 1px solid #eee;
  box-shadow: 0 5px 25px rgba(0,0,0,0.06); */
}

/* TITLES */
.title h3 {
  font-weight: 700;
  color: #333;
}
.title p {
  color: #777;
  font-size: 15px;
}

/* FORM INPUTS */
.form-group input.form-control {
  height: 48px;
  border-radius: 6px;
  border-color: #ddd;
  transition: 0.3s;
}
.form-group input.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 5px rgba(0, 98, 255, 0.3);
}

/* BUTTON */
.button button.btn {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 6px;
  transition: 0.3s ease;
}
.button button.btn:hover {
  background: var(--primary);
}

/* TOGGLE LINK */
.outer-link {
  text-align: center;
  margin-top: 15px;
  font-size: 15px;
}
.outer-link button {
  border: none;
  background: none;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
}

/* SOCIAL BUTTONS */
.social-login .btn {
  width: 100%;
  height: 45px;
  border-radius: 6px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}
.facebook-btn {
  background: var(--primary);
  color: #fff;
}
.google-btn {
  background: #fff;
  border: 1px solid #ddd;
}

/* RIGHT BANNER */
.custom-banner {
  height: 100%;
  min-height: 500px;
  background: url('../images/banner/banner-1-bg.jpg') center/cover
    no-repeat;
  border-radius: 0 12px 12px 0;
  position: relative;
  overflow: hidden;
}
.custom-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(108 102 207 / 73%);
}
.banner-content {
  position: relative;
  z-index: 4;
  padding: 40px;
}
.banner-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
}
.banner-content p {
  font-size: 16px;
  color: #eee;
  margin-bottom: 20px;
}
.banner-btn {
  background: #fff;
  color: #000;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 6px;
}
.banner-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .custom-banner {
    display: none;
  }
}

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

.order-table thead th {
  text-align: center;
  background: var(--primary);
  color: var(--white-full);
  font-weight: 600;
  white-space: nowrap;
  padding: 14px;
}
.order-table td {
  text-align: center;
}

.order-row {
  cursor: pointer;
}

.order-row {
  background: var(--white-full);
}
.order-row:hover {
  background: var(--sec-bg);
}

#order1Products .row {
  font-size: 14px;
}
.dashboard-sidebar {
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  border-radius: 8px;
}

.dashboard-menu li {
  margin-bottom: 12px;
}

.dashboard-menu a {
  padding: 10px 12px;
  display: block;
  font-weight: 500;
  border-radius: 6px;
  transition: 0.2s;
  color: var(--dark-p);
}

.dashboard-menu li.active a,
.dashboard-menu a:hover {
  background: var(--primary);
  color: var(--white-full) !important;
  border-radius: 20px !important;
}
/* Base dashboard menu */
.dashboard-menu a {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  font-weight: 500;
  border-radius: 6px;
  transition: 0.25s ease;
  color: #333;
  position: relative;
}

/* Arrow icon default hidden */
.dashboard-menu a::after {
  content: '\ea24'; /* Right arrow (Linearicon or similar) */
  font-family: 'LineIcons';
  font-size: 14px;
  opacity: 0;
  transform: translateX(-5px);
  transition: 0.3s ease;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.dashboard-menu a:hover::after {
  opacity: 1;
  transform: translateX(0) translateY(-50%);
}

/* Active state */
.dashboard-menu li.active a,
.dashboard-menu a:hover {
  background: var(--primary);
  color: var(--white-full);
}
.dashboard-content {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
}

.dashboard-menu li.active a::after {
  opacity: 1;
  transform: translateX(0) translateY(-50%);
}

.order-table thead th {
  background: var(--primary);
  color: var(--white-full);
  padding: 14px;
  white-space: nowrap;
}

.order-row:hover {
  background: var(--sec-bg);
  cursor: pointer;
}

#order1Products .row {
  font-size: 14px;
}
.dashboard-welcome-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white-full);
  border: none;
  border-radius: 4px;
}

.dashboard-welcome-card h3 {
  color: var(--white-full);
}

.welcome-icon {
  background: rgba(255, 255, 255, 0.2);
  padding: 18px;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  color: var(--white-full);
  width: 80px;
  height: 80px;
}

/* Stats Cards */
.stats-card {
  border-radius: 12px;
  background: var(--white-full);
  border: 1px solid #eee;
  transition: 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.08);
}

.stats-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
} /* Wrapper */
.profile-dropdown-wrapper {
  position: relative;
  cursor: pointer;
}
.btn-dark {
  border-color: transparent !important;
}

/* Dropdown box */
.profile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  width: 220px;
  border-radius: 12px;
  padding: 8px 0;
  display: none;
  z-index: 1000;
  opacity: 0;
  transform: translateY(15px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

/* Hover show */
.profile-dropdown-wrapper:hover .profile-dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* List styling */
.profile-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0 10px;
}

.profile-dropdown ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.25s ease;
  text-decoration: none;
}

/* Hover effect */
.profile-dropdown ul li a:hover {
  background: linear-gradient(90deg, var(--primary) 0%, var(--pri-light) 100%);
  color: var(--white-full);
  padding-left: 30px;
}

/* Logout red */
.profile-dropdown a.logout:hover {
  background: var(--secondary) !important;
  color: var(--white-full) !important;
}

/* Optional: small icon style */
.profile-dropdown ul li a i {
  font-size: 16px;
}
#address-dashboard {
  padding-top: 50px;
  padding-bottom: 50px;
}

#address-dashboard h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 30px;
}

/* Cards */
#existingAddresses .card,
#address-dashboard .form-card {
  border: none;
  border-radius: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

#existingAddresses .card:hover,
#address-dashboard .form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

#existingAddresses .badge {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 10px;
}

@media (max-width: 576px) {
  .success-box{
    padding: 14px !important;
  }
  #existingAddresses button.btn {
    width: 140px !important;
  }
}
.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper .toggle-password {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
  width: 25px;
  height: 25px;
}

.password-wrapper svg {
  width: 22px;
  height: 22px;
}

.icon-eye {
  display: none;
}

/* --------------------------------------- */
.inputP {
  position: relative;
}

.btn_spinner {
  display: none;
}

label.error {
  font-size: 13px;
  /* margin: 10px 0 0; */
  margin-top: -28px;
  font-weight: 400;
  color: #ffffff;
  position: absolute;
  top: 0;
  padding: 0 11px;
  background: #ff4422;
  /* background-color: #d95c5c; */
  border-radius: 6px;
  width: auto;
  text-align: center;
  right: 0;
  z-index: 11;
  text-transform: none;
}

input.error,
select.error,
textarea.error,
select2.error {
  /* border: 1px solid #d95c5c !important;
  border-left: 5px solid #d95c5c !important; */
  border: 1px solid #ff4422 !important;
  border-left: 5px solid #ff4422 !important;
  /* background-color: #fffafa !important; */
}

input.error,
select.error,
textarea.error,
select2.error:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

label.error::before {
  position: absolute;
  content: '';
  width: 0.6em;
  height: 0.6em;
  background-image: none;
  transform: rotate(45deg);
  transition: background 0.1s linear;
  margin-left: -0.3em;
  top: auto;
  /* background: #d95c5c; */
  background: #ff4422;
  right: 11px;
  bottom: -4px;
  left: auto;
}

.error_astrick {
  /* border-color: #d95c5c; */
  border-color: #ff4422;
}

.select2-container--default .select2-selection--single select.error {
  border: 1px solid #ff4422 !important;
  border-left: 5px solid #ff4422 !important;
  /* border: 1px solid #d95c5c !important;
  border-left: 5px solid #d95c5c !important; */
  background-color: #fffafa !important;
}

#prof_pic-error {
  position: absolute;
  margin-top: -26px !important;
}

.date_error {
  position: relative;
}

#snackbar-error {
  display: none;
  min-width: 250px;
  margin-left: -150px;
  background-color: #f44b54;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 30px;
}

.error_pass {
  color: red;
}

.alert_error {
  background-color: rgb(246, 3, 3, 0.7);
}

.popup-box-alert {
  left: 50%;
  transform: translateX(-50%);
}
/* --------------------------------------- */

.auth-title {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

.auth-sub {
  text-align: center;
  color: #6d6d6d;
  margin-bottom: 25px;
}

.modern-input {
  height: 48px;
  border-radius: 12px !important;
  border: 1px solid #ddd;
  padding-left: 15px;
  transition: 0.3s;
}
.modern-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

.modern-btn {
  height: 48px;
  font-size: 16px;
  border-radius: 12px;
}

.auth-link {
  text-align: center;
  margin-top: 15px;
  color: #777;
}

.switch-link {
  color: var(--primary);
  cursor: pointer;
  font-weight: 500;
}
.switch-link:hover {
  text-decoration: underline;
}

/* OTP BOXES */
.otp-wrapper {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.otp-box {
  width: 55px;
  height: 55px;
  font-size: 22px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid #ddd;
  transition: 0.3s;
  font-weight: bold;
}
.otp-box:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
  outline: none;
}
.modal-backdrop {
  z-index: 99999 !important;
}
.modal {
  z-index: 999999;
}

.profile-card,
.address-card,
.password-card {
  transition: all 0.3s ease;
}
.address-card h2,
.password-card h2 {
  font-size: 30px !important;
}

.profile-card:hover,
.address-card:hover,
.password-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.profile-img {
  object-fit: cover;
  width: 100px !important;
  height: 100px !important;
}
.profile-card button.camera-btn {
  padding: 0px !important;
  height: 30px !important;
  width: 30px !important;
}
.rounded-4 {
  border-radius: 12px !important;
}
#supportModal .contact-form-head .form-main {
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}
#supportModal .contact-form-head .form-main .form .form-group textarea {
  height: auto !important;
}

/* Center Box */
.success-box {
  max-width: 520px;
  padding: 40px;
  background: var(--white-full);
  border-radius: 28px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.07);
  animation: fadeIn 0.7s ease-in-out;
}

/* Success Icon */
.success-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  background: #16c47f;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pop 0.6s ease-out;
}

.checkmark {
  width: 30px;
  height: 55px;
  border-right: 6px solid #fff;
  border-bottom: 6px solid #fff;
  transform: rotate(45deg);
  opacity: 0;
  animation: draw 0.9s ease forwards;
}

/* Product Line */
.product-line {
  background: var(--white-full);
  box-shadow: var(--shadow-border) !important;
padding: 8px;
border-radius: 12px;
}

.product-img {
  width: 58px;
  height: 58px;
  object-fit: cover;
}

/* Animations */
@keyframes pop {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes draw {
  0% {
    opacity: 0;
    height: 0;
  }
  100% {
    opacity: 1;
    height: 55px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* List styling */
.order-info-list li span {
  font-size: 15px;
}

.order-info-list li strong {
  font-size: 15px;
}
.sec-bg {
  background: #f4f7ff;
}

.left-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  transition: 0.3s;
}

.left-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.paid-badge {
  background: #28a745;
  color: white;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
}

.product-img {
  width: 65px;
  height: 65px;
  object-fit: cover;
}

/* TRACKING CARD */
.tracking-box {
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 15px 40px rgba(0,0,0,0.07);
}

/* TIMELINE */
.tracking-wrapper {
  position: relative;
  border-left: 3px solid #d9d9d9;
  margin-left: 15px;
  padding-left: 25px;
}

.track-step {
  position: relative;
  margin-bottom: 40px;
}

.track-step:last-child {
  margin-bottom: 0;
}

.track-step .dot {
  width: 18px;
  height: 18px;
  position: absolute;
  left: -35px;
  top: 0;
  border-radius: 50%;
  background: #cfcfcf;
  border: 3px solid #fff;
  box-shadow: 0 0 0 4px #d9d9d9;
  transition: 0.3s ease;
}

.track-step.completed .dot {
  background: #28a745;
  box-shadow: 0 0 0 4px rgba(0, 200, 81, 0.3);
}

.track-step.active .dot {
  background: var(--primary);
  box-shadow: 0 0 15px rgba(13,110,253,0.6);
  animation: pulse 1.3s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 4px rgba(13,110,253, 0.4); }
  100% { box-shadow: 0 0 0 12px rgba(13,110,253, 0); }
}

.track-step h6 {
  margin: 0;
}

.track-step small {
  font-size: 13px;
}

.product-specs li,
.product-features li {
  margin-bottom: 6px;
  font-size: 14px;
}

.product-features li::before {
  content: "✔";
  color: var(--primary);
  margin-right: 6px;
}
.order-info-box {
  background: var(--white-full);
}

.order-info-box .info-item strong {
  font-size: 15px;
}

.order-info-box .badge {
  font-size: 13px;
  border-radius: 12px;
}
.zoom-container {
  position: relative;
  display: inline-block;
  margin: 20px;
  overflow: hidden; /* OK */
}

.zoom-img {
  width: auto;
  height: 320px;
  display: block;
}

.zoom-lens {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: none;
  pointer-events: none;
  z-index: 10;
}

.zoom-result {
  position: absolute; /* body ke under, free from parent overflow */
  width: 250px;
  height: 250px;
  border: 1px solid #ddd;
  background-repeat: no-repeat;
  background-size: 200%;
  display: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  z-index: 3000;
}


/* ====== Premium Size-Chart Table ====== */
.size-table {
  border-collapse: separate;
  border-spacing: 0 0.75rem;   /* à¤°à¥‹ à¤•à¥‡ à¤¬à¥€à¤š à¤—à¥ˆà¤ª â†’ à¤•à¤¾à¤°à¥à¤¡ à¤œà¥ˆà¤¸à¤¾ à¤²à¥à¤• */
  background: transparent;
  margin-bottom: 0 !important;
}

.size-table thead th {
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  color: #6c757d;
  padding-top: 4px;
  padding-bottom: 4px;
}

.size-table tbody tr {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  transition: all .25s ease;
  transform: scale(1);
}


/* à¤¸à¥‡à¤²à¥‡à¤•à¥à¤Ÿà¥‡à¤¡ à¤°à¥‹ à¤¹à¤¾à¤‡à¤²à¤¾à¤‡à¤Ÿ */
.size-table tbody tr.selected {
  background: #f0f8ff;
  box-shadow:inset 0 0 0 2px var(--pri-light);

}

.size-table td {
  border: none;
  vertical-align: middle;
  padding: 0rem 0.75rem;
}
.size-table tr{
  margin-top: 5px;
  margin-bottom: 5px;
}

.sizechart-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
}

/* à¤•à¤¸à¥à¤Ÿà¤® à¤šà¥‡à¤•à¤¬à¥‰à¤•à¥à¤¸ */
.check-box {
  position: relative;
  cursor: pointer;
  margin: 0;
}
.check-box input {
  position: absolute;
  opacity: 0;
}
.check-mark {
  width: 20px;
  height: 20px;
  border: 2px solid #ced4da;
  border-radius: 6px;
  display: inline-block;
  transition: .2s;
}
.check-box input:checked ~ .check-mark {
  background: var(--primary);
  border-color:var(--primary);
}
.check-mark:after {
  content: '';
  position: absolute;
  left: 8px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: none;
}
.check-box input:checked ~ .check-mark:after {
  display: block;
}
.sizechart-img{
  width: 50px !important;
  height: auto !important;
}


/* ---------- */
.tbody-scroll {
  display: block;
  max-height: 250px;   /* yaha height set karo */
  overflow-y: auto;
}

.tbody-scroll tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.size-table thead tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}


/* ---------------------- */
#openCoupons{
  cursor: pointer !important;
}
.coupon-sidebar {
  position: fixed;
  top: 120px;
  right: -380px;
  width: 360px;
  height: 100%;
  background: #fff;
  z-index: 1051;
  box-shadow: -5px 0 20px rgba(0,0,0,0.15);
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
}

.coupon-sidebar.active {
  right: 0;
}

.coupon-header {
  padding: 16px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.coupon-header h6 {
  margin: 0;
  font-weight: 600;
}

.close-sidebar {
  font-size: 24px;
  cursor: pointer;
}
.coupon-body{max-height:420px;overflow-y:auto;}
.coupon-card{
  display:flex;
  background:#fff;
  border-radius:12px;
  box-shadow:0 4px 18px rgba(0,0,0,.06);
  margin-bottom:1rem;
  overflow:hidden;
  transition:all .25s ease;
  border:1px dashed #646464;
}
.coupon-card:hover{transform:translateY(-3px);box-shadow:0 8px 26px rgba(0,0,0,.09);}
.coupon-left{
  width:92px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:700;
  font-size:1.4rem;
  line-height:1.2;
  text-align:center;
  padding:.6rem .4rem;
}
.coupon-left small{font-size:.65rem;letter-spacing:.5px;opacity:.9;}
.coupon-right{padding:8px 1.2rem;flex:1;}
.coupon-code{font-size:1.15rem;font-weight:600;color:#212529; margin-bottom: 8px;}
.coupon-desc{color:#6c757d;font-size:.9rem;margin-bottom:.15rem;}
.coupon-tc{font-size:.75rem;color:#adb5bd;}
.copy-btn{font-size:14px;padding: 0px; color: var(--primary); font-weight: 700; margin-bottom: 8px !important;}
/* Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1050;
  display: none;
}

.sidebar-overlay.active {
  display: block;
}
.apply-coupon-input input {
  height: 52px !important;
}
.apply-coupon-input button.btn{
  border-radius: 0 !important ;
  height: 52px !important;
}
.apply-coupon-input button.btn::before{
  border-radius: 0 !important ;
  height: 52px !important;
}



/* ------------ */
/* LOGIN CARD */
.login-section-modern {
  position: relative;
  background: linear-gradient(135deg, #8b1e2d 0%, #f4a641 100%);
  color: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow:
    0 20px 48px rgba(108,102,207,0.28),
    inset 0 1px 0 rgba(255,255,255,0.22);
  overflow: hidden;
  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    box-shadow .35s cubic-bezier(.2,.8,.2,1);
}

/* HOVER – FLOAT FEEL */
.login-section-modern:hover {
  transform: translateY(-4px);
  box-shadow:
    0 30px 72px rgba(108,102,207,0.38),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

/* SOFT GLOW */
.login-section-modern::before {
  content: "";
  position: absolute;
  top: -45%;
  right: -35%;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.38),
    rgba(255,255,255,0.12) 45%,
    transparent 70%
  );
  filter: blur(6px);
  pointer-events: none;
}

/* HEADER */
.login-icon {
  font-size: 24px;
  opacity: 0.95;
}

.login-section-modern h5 {
  font-weight: 600;
  letter-spacing: -0.25px;
}

.login-section-modern small {
  font-size: 12px;
  opacity: 0.82;
}

/* BENEFIT LIST */
.login-section-modern ul {
  margin-top: 18px;
}

.login-section-modern li {
  display: flex;
  align-items: center;
  font-size: 13.5px;
  opacity: 0.95;
  line-height: 1.65;
  padding: 4px 0;
}

/* DOT */
.benefit-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(180deg, #ffffff, #e9e9ff);
  border-radius: 50%;
  display: inline-block;
  margin-right: 12px;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(255,255,255,0.6);
}

/* LOGIN BUTTON */
.login-section-modern .btn {
  margin-top: 20px;
  border-radius: 16px;
  padding: 12px 28px;
  font-size: 14.5px;
  font-weight: 600;
  color: #f4a641;
  background: linear-gradient(180deg, #ffffff, #f2f2ff);
  border: none;
  box-shadow: 0 12px 26px rgba(0,0,0,0.2);
  transition: all .3s cubic-bezier(.2,.8,.2,1);
}

/* BUTTON HOVER */
.login-section-modern .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

/* BUTTON PRESS */
.login-section-modern .btn:active {
  transform: scale(0.97);
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .login-section-modern {
    padding: 22px;
    border-radius: 18px;
  }
}




.bnt-hover-white{
  border: 1px solid var(--white-full) !important;
  background: transparent !important;
  color: var(--white-full) !important;
}
.bnt-hover-white:hover::before{
background-color: var(--white-full);
}
.bnt-hover-white:hover{
background-color: var(--white-full) !important;
color: var(--primary) !important;
}



/* Variant List */
.variant-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 10px;
  background: #fff;
}

/* Hover */
.variant-row:hover {
  border-color: #0d6efd;
  background: #f8f9ff;
}

/* Hide default radio */
.variant-row input[type="radio"] {
  display: none;
}

/* Selected state */
.variant-row input[type="radio"]:checked + span {
  font-weight: 600;
}

.variant-row input[type="radio"]:checked ~ strong {
  color: #0d6efd;
}

/* Card highlight when selected */
.variant-row:has(input[type="radio"]:checked) {
  border-color: #0d6efd;
  background: #eef3ff;
  box-shadow: 0 0 0 1px #0d6efd inset;
}

/* Price */
.variant-row strong {
  font-size: 16px;
}

/* Strike price */
.variant-row small {
  margin-left: 6px;
  text-decoration: line-through;
  color: #888;
}

/* Modal body spacing */
.modal-body {
  padding: 20px;
}

/* Variant list scroll area */
.variant-scroll {
  max-height: 420px;        /* adjust as needed */
  overflow-y: auto;
  padding-right: 6px;      /* space for scrollbar */
}

/* Smooth scrolling */
.variant-scroll {
  scroll-behavior: smooth;
}

/* Scrollbar styling (Webkit) */
.variant-scroll::-webkit-scrollbar {
  width: 6px;
}

.variant-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.variant-scroll::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 10px;
}

.variant-scroll::-webkit-scrollbar-thumb:hover {
  background: #888;
}

/* Firefox scrollbar */
.variant-scroll {
  scrollbar-width: thin;
  scrollbar-color: #bbb #f1f1f1;
}



.c-card{
    border-radius: 12px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-box-shadow: var(--shadow-premium);
    box-shadow: var(--shadow-premium);
}

.ct-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;

  /* Soft Apple-style border */
  border: 2px solid rgba(255, 255, 255, 0.9);

  /* Subtle depth */
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.12),
    0 1px 3px rgba(0, 0, 0, 0.08);

  /* Smooth interaction */
  transition: all 0.3s ease;

  /* Apple polish */
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0)
  );
}

/* Hover = Apple-like lift */
.ct-avatar:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.18),
    0 3px 6px rgba(0, 0, 0, 0.1);
}

.top-150p {
  top: 150px;
}

/* TAB BAR */
#productTab {
  background: #ffffff;
  border: none !important;
  padding: 6px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  gap: 6px;
}

/* REMOVE BOOTSTRAP BORDER */
#productTab.nav-tabs {
  border-bottom: none !important;
}

/* TAB BUTTON */
#productTab .nav-link {
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 6px 14px;
  border-radius: 999px;
  color: #6b7280;
  border: none !important;
  background: transparent;
  transition: all 0.25s ease;
}

/* HOVER */
#productTab .nav-link:hover {
  background: #f3f4f6;
  color: #111827;
}

/* ACTIVE TAB */
#productTab .nav-link.active {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* REMOVE FOCUS OUTLINE */
#productTab .nav-link:focus {
  box-shadow: none;
}

/* MOBILE */
@media (max-width: 640px) {
  #productTab {
    justify-content: center;
  }

  #productTab .nav-link {
    font-size: 13px !important;
    padding: 5px 12px;
  }
}



.zoom-container {
  position: relative;
  cursor: zoom-in;
}

.details {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 20px; 
  width: 380px;
  height: 380px;
  pointer-events: none;
  z-index: 2;
}

/* Drift zoom pane */
.drift-pane {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 360px !important;
  height: 360px !important;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

/* Hover box (Amazon style) */
.drift-bounding-box {
  border: 2px solid rgba(0,0,0,0.4);
  background: rgba(255,255,255,0.35);
  z-index: 4;
}


.btn-group-sm>.btn, .btn-sm, *:not(.quantity-wrapper) > .btn.btn-sm {
    padding: .25rem .5rem !important;
    font-size: .775rem !important;}



.selectable-row.disabled input {
  pointer-events: none;
}

/* LIST ROW */
.selectable-row {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fafafa, #f4f5f7);
  border: 1px solid #e6e7eb;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(.4, 0, .2, 1);
}

/* RADIO HIDE */
.selectable-row input {
  display: none;
}

/* HOVER */
.selectable-row:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

/* ACTIVE STATE */
.selectable-row.active {
  background: linear-gradient(180deg, #f5f4ff, #ecebff);
  border-color: #f4a641;
  box-shadow:
  0 6px 14px rgba(108,102,207,0.14),
  inset 0 0 0 1px rgba(255,255,255,0.45);

}

/* CHECK ICON – DEFAULT (INACTIVE) */
.selectable-row::after {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #c7c9cc;
  color: #c7c9cc;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: all 0.25s ease;
}

/* CHECK ICON – ACTIVE */
.selectable-row.active::after {
  background: linear-gradient(180deg, #7b75dd, #5c57c7);
  border-color: #f4a641;
  color: #fff;
  box-shadow: 0 6px 16px rgba(108,102,207,0.45);
}

/* TEXT */
.selectable-row > span:first-of-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 14px;
  color: #1d1d1f;
  padding-left: 38px;
  padding-right: 12px;
}

.selectable-row strong {
  font-weight: 600;
  color: #000;
}

