* {
  margin: 0;
  box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --mainfont: "Marcellus", serif;
  --primary-font: "Montserrat", sans-serif;

  /* theme colors */
  --them-color: #ad893f;
  --them-dark: #8c6f2f;
  --them-light: #d4b46a;

  /* base colors */
  --black-color: #000;
  --white-color: #fff;
  --gray-color: #c3c3c3;

  /* glass + shadow */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* === comon css start === */
/* ===== MAIN BUTTON WRAPPER ===== */
.main-btn {
  display: inline-block;
}

/* ===== COMMON BUTTON STYLE ===== */
.main-btn a,
.main-btn button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  overflow: hidden;
  /* IMPORTANT for shine */
  z-index: 1;
  transition: all 0.4s ease;
}

/* ===== SOLID BUTTON ===== */
.main-btn a,
.main-btn button {
  background: #000;
  color: #fff;
  border: none;
}

/* ===== OUTLINE BUTTON ===== */
.main-btn.outline-btn a {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* ===== OUTLINE HOVER ===== */
.main-btn.outline-btn a:hover {
  background: #000;
  color: #fff;
}

/* ===== SHINE EFFECT ===== */
.main-btn a::after,
.main-btn button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -80%;
  width: 40%;
  height: 200%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.7) 50%,
      rgba(255, 255, 255, 0) 70%);
  transform: rotate(25deg);
  transition: 0.7s ease;
  pointer-events: none;
}

/* ===== HOVER SHINE ===== */
.main-btn a:hover::after,
.main-btn button:hover::after {
  left: 120%;
}

/* ===== HOVER EFFECT ===== */
.main-btn a:hover,
.main-btn button:hover {
  transform: translateY(-3px);
}

/* ===== ICON STYLE ===== */
.main-btn i {
  font-size: 18px;
  transition: 0.3s ease;
}

/* ===== ICON HOVER ===== */
.main-btn a:hover i,
.main-btn button:hover i {
  transform: translateX(6px);
}

/* ===== OPTIONAL: SMOOTH CLICK FEEL ===== */
.main-btn a:active,
.main-btn button:active {
  transform: scale(0.97);
}


/* ===== COMMON ARROW ===== */
.product-area .slick-prev,
.product-area .slick-next {
  width: 50px;
  height: 50px;
  background: #000;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Remove default arrow */
.product-area .slick-prev::before,
.product-area .slick-next::before {
  display: none;
}

/* ICON STYLE */
.product-area .slick-prev i,
.product-area .slick-next i {
  color: #fff;
  font-size: 30px;
  transition: 0.3s ease;
}

/* ===== HOVER EFFECT ===== */
.product-area .slick-prev:hover,
.product-area .slick-next:hover {
  background: linear-gradient(135deg, #ad893f, #8c6f2f);
  transform: translateY(-3px) scale(1.05);
}

/* Icon move */
.product-area .slick-prev:hover i {
  transform: translateX(-3px);
}

.product-area .slick-next:hover i {
  transform: translateX(3px);
}

/* ===== POSITION ===== */
.product-area .slick-prev {
  left: -25px;
}

.product-area .slick-next {
  right: -25px;
}


.title-white {
  font-size: 45px;
}


/* === comon css end === */




/*------ Typography Style Start ------*/

a {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  text-decoration: none;
}

a:hover,
a:focus {
  outline: none;
  text-decoration: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--mainfont);
  color: #222222;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0;
  line-height: 1.5;
}

h1,
.h1 {
  font-size: 36px;
}

h2,
.h2 {
  font-size: 30px;
}

h3,
.h3 {
  font-size: 24px;
}

h4,
.h4 {
  font-size: 20px;
}

h5,
.h5 {
  font-size: 18px;
}

h6,
.h6 {
  font-size: 16px;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

strong,
b {
  font-weight: 700;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.btn,
button {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  background-color: transparent;
}

.btn:active,
.btn:focus,
button:active,
button:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input,
textarea {
  resize: none;
}

input:focus,
textarea:focus {
  outline: none;
}

.form-control:focus {
  border-color: var(--them-color);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-group {
  margin-bottom: 1rem;
}

::-moz-selection {
  color: #fff;
  background: var(--them-color);
}

::selection {
  color: #fff;
  background: var(--them-color);
}

::-webkit-input-placeholder {
  color: #999;
  font-size: 13px;
  opacity: 1;
}

::-moz-placeholder {
  color: #999;
  font-size: 13px;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #999;
  font-size: 13px;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #999;
  font-size: 13px;
  opacity: 1;
}

::placeholder {
  color: #999;
  font-size: 13px;
  opacity: 1;
}

/* ----tab problem fix css ----*/
.tab-content .tab-pane {
  display: block;
  height: 0;
  max-width: 100%;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
}

.tab-content .tab-pane.active {
  height: auto;
  opacity: 1;
  overflow: visible;
  visibility: visible;
}

/* ----tab problem fix css ----*/
/*------- modal fix start -------*/
.modal-dialog {
  max-width: 1000px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .modal-dialog {
    max-width: 800px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .modal-dialog {
    max-width: 700px;
  }
}

.modal {
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: -99;
}

.modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
  z-index: 99999999;
  -webkit-animation: slideInDown 0.4s forwards;
  animation: slideInDown 0.4s forwards;
}

.modal .modal-header {
  padding: 0 10px;
  border-bottom: none;
}

.modal .modal-header .close {
  color: #222222;
  font-size: 34px;
  opacity: 1;
  display: block;
  position: absolute;
  padding: 0;
  width: 30px;
  height: 30px;
  margin: 0;
  right: 10px;
  top: 10px;
  font-weight: 500;
  z-index: 999;
  line-height: 30px;
  border-radius: 50%;
}

.modal .modal-body {
  padding: 20px 20px 20px 20px;
}

@media only screen and (max-width: 479.98px) {
  .modal .modal-body {
    padding: 10px;
  }
}

/*------- modal fix end -------*/
/* ---- Sick Slider arrow style start ----*/
.slick-slider .slick-slide>div>div {
  vertical-align: middle;
}

.slick-arrow-style button.slick-arrow {
  top: 50%;
  left: 0;
  font-size: 70px;
  color: #777777;
  cursor: pointer;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.slick-arrow-style button.slick-arrow.slick-next {
  left: auto;
  right: 0;
}

.slick-arrow-style button.slick-arrow:hover {
  color: var(--them-color);
}

.slick-arrow-style:hover button.slick-arrow {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.slick-arrow-style:hover button.slick-arrow.slick-prev {
  left: -60px;
  right: auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
  .slick-arrow-style:hover button.slick-arrow.slick-prev {
    left: -20px;
  }
}

.slick-arrow-style:hover button.slick-arrow.slick-next {
  left: auto;
  right: -60px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
  .slick-arrow-style:hover button.slick-arrow.slick-next {
    right: -20px;
  }
}

.slick-arrow-style_hero button.slick-arrow {
  font-size: 60px;
  left: 0;
  width: inherit;
  height: inherit;
  background-color: transparent;
  z-index: 1;
}

.slick-arrow-style_hero button.slick-arrow.slick-next {
  right: 0;
}

.slick-arrow-style_hero button.slick-arrow:hover {
  color: var(--them-color);
  background-color: transparent;
}

.slick-arrow-style_hero:hover button.slick-arrow.slick-next {
  right: 15px;
}

.slick-arrow-style_hero:hover button.slick-arrow.slick-prev {
  left: 15px;
}

.slick-append {
  background-color: #fff;
  z-index: 2;
  margin-top: -2px;
}

.slick-append button {
  font-size: 30px;
  line-height: 1;
  position: inherit;
  display: inline-block;
  background-color: transparent;
  color: #555555;
}

.slick-append button:hover {
  color: var(--them-color);
}

/*--------- slick slider dot style start -------*/
.slick-dot-style ul.slick-dots {
  bottom: 15px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.slick-dot-style ul.slick-dots li {
  display: inline-block;
  margin-right: 10px;
}

.slick-dot-style ul.slick-dots li:last-child {
  margin-right: 0;
}

.slick-dot-style ul.slick-dots li button {
  width: 14px;
  height: 14px;
  padding: 0;
  border: none;
  display: block;
  text-indent: -5000px;
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border: 2px solid #777777;
  background-color: transparent;
}

.slick-dot-style ul.slick-dots li.slick-active button {
  border-color: var(--them-color);
  background-color: var(--them-color);
}

.slick-row-3 .slick-list {
  margin: 0 -3px;
}

.slick-row-3 .slick-list .slick-slide {
  margin: 0 3px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-3 .slick-list {
    margin: 0 -3px !important;
  }

  .slick-sm-row-3 .slick-list .slick-slide {
    margin: 0 3px !important;
  }
}

.slick-row-4 .slick-list {
  margin: 0 -4px;
}

.slick-row-4 .slick-list .slick-slide {
  margin: 0 4px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-4 .slick-list {
    margin: 0 -4px !important;
  }

  .slick-sm-row-4 .slick-list .slick-slide {
    margin: 0 4px !important;
  }
}

.slick-row-5 .slick-list {
  margin: 0 -5px;
}

.slick-row-5 .slick-list .slick-slide {
  margin: 0 5px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-5 .slick-list {
    margin: 0 -5px !important;
  }

  .slick-sm-row-5 .slick-list .slick-slide {
    margin: 0 5px !important;
  }
}

.slick-row-6 .slick-list {
  margin: 0 -6px;
}

.slick-row-6 .slick-list .slick-slide {
  margin: 0 6px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-6 .slick-list {
    margin: 0 -6px !important;
  }

  .slick-sm-row-6 .slick-list .slick-slide {
    margin: 0 6px !important;
  }
}

.slick-row-7 .slick-list {
  margin: 0 -7px;
}

.slick-row-7 .slick-list .slick-slide {
  margin: 0 7px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-7 .slick-list {
    margin: 0 -7px !important;
  }

  .slick-sm-row-7 .slick-list .slick-slide {
    margin: 0 7px !important;
  }
}

.slick-row-8 .slick-list {
  margin: 0 -8px;
}

.slick-row-8 .slick-list .slick-slide {
  margin: 0 8px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-8 .slick-list {
    margin: 0 -8px !important;
  }

  .slick-sm-row-8 .slick-list .slick-slide {
    margin: 0 8px !important;
  }
}

.slick-row-9 .slick-list {
  margin: 0 -9px;
}

.slick-row-9 .slick-list .slick-slide {
  margin: 0 9px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-9 .slick-list {
    margin: 0 -9px !important;
  }

  .slick-sm-row-9 .slick-list .slick-slide {
    margin: 0 9px !important;
  }
}

.slick-row-10 .slick-list {
  margin: 0 -10px;
}

.slick-row-10 .slick-list .slick-slide {
  margin: 0 10px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-10 .slick-list {
    margin: 0 -10px !important;
  }

  .slick-sm-row-10 .slick-list .slick-slide {
    margin: 0 10px !important;
  }
}

.slick-row-11 .slick-list {
  margin: 0 -11px;
}

.slick-row-11 .slick-list .slick-slide {
  margin: 0 11px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-11 .slick-list {
    margin: 0 -11px !important;
  }

  .slick-sm-row-11 .slick-list .slick-slide {
    margin: 0 11px !important;
  }
}

.slick-row-12 .slick-list {
  margin: 0 -12px;
}

.slick-row-12 .slick-list .slick-slide {
  margin: 0 12px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-12 .slick-list {
    margin: 0 -12px !important;
  }

  .slick-sm-row-12 .slick-list .slick-slide {
    margin: 0 12px !important;
  }
}

.slick-row-13 .slick-list {
  margin: 0 -13px;
}

.slick-row-13 .slick-list .slick-slide {
  margin: 0 13px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-13 .slick-list {
    margin: 0 -13px !important;
  }

  .slick-sm-row-13 .slick-list .slick-slide {
    margin: 0 13px !important;
  }
}

.slick-row-14 .slick-list {
  margin: 0 -14px;
}

.slick-row-14 .slick-list .slick-slide {
  margin: 0 14px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-14 .slick-list {
    margin: 0 -14px !important;
  }

  .slick-sm-row-14 .slick-list .slick-slide {
    margin: 0 14px !important;
  }
}

.slick-row-15 .slick-list {
  margin: 0 -15px;
}

.slick-row-15 .slick-list .slick-slide {
  margin: 0 15px;
}

@media only screen and (max-width: 767.98px) {
  .slick-sm-row-15 .slick-list {
    margin: 0 -15px !important;
  }

  .slick-sm-row-15 .slick-list .slick-slide {
    margin: 0 15px !important;
  }
}

.slick-slider .slick-slide>div {
  margin-bottom: 30px;
}

.slick-slider .slick-slide>div:last-child {
  margin-bottom: 0;
}

/* ----scroll to top css start ----*/
.scroll-top {
  bottom: 50px;
  cursor: pointer;
  height: 50px;
  position: fixed;
  right: 20px;
  text-align: center;
  width: 50px;
  z-index: 9999;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
  background-color: var(--them-color);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

@media only screen and (max-width: 767.98px) {
  .scroll-top {
    display: none;
  }
}

.scroll-top i {
  line-height: 50px;
  color: #fff;
  font-size: 25px;
}

.scroll-top.not-visible {
  bottom: -50px;
  visibility: hidden;
  opacity: 0;
}

.scroll-top:hover {
  background-color: #222222;
}

/* ----scroll to top css end ----*/
.container {
  padding-right: var(--bs-gutter-x, 15px);
  padding-left: var(--bs-gutter-x, 15px);
}

/* @media only screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
} */

.container-fluid {
  padding-right: var(--bs-gutter-x, 15px);
  padding-left: var(--bs-gutter-x, 15px);
}

.row {
  --bs-gutter-x: 30px;
}

.custom-container {
  max-width: 1800px;
}

.row-0 {
  margin-left: 0px;
  margin-right: 0px;
}

.row-0>[class*=col] {
  padding-left: 0px;
  padding-right: 0px;
}

.row-1 {
  margin-left: -0.5px;
  margin-right: -0.5px;
}

.row-1>[class*=col] {
  padding-left: 0.5px;
  padding-right: 0.5px;
}

.row-2 {
  margin-left: -1px;
  margin-right: -1px;
}

.row-2>[class*=col] {
  padding-left: 1px;
  padding-right: 1px;
}

.row-3 {
  margin-left: -1.5px;
  margin-right: -1.5px;
}

.row-3>[class*=col] {
  padding-left: 1.5px;
  padding-right: 1.5px;
}

.row-4 {
  margin-left: -2px;
  margin-right: -2px;
}

.row-4>[class*=col] {
  padding-left: 2px;
  padding-right: 2px;
}

.row-5 {
  margin-left: -2.5px;
  margin-right: -2.5px;
}

.row-5>[class*=col] {
  padding-left: 2.5px;
  padding-right: 2.5px;
}

.row-6 {
  margin-left: -3px;
  margin-right: -3px;
}

.row-6>[class*=col] {
  padding-left: 3px;
  padding-right: 3px;
}

.row-7 {
  margin-left: -3.5px;
  margin-right: -3.5px;
}

.row-7>[class*=col] {
  padding-left: 3.5px;
  padding-right: 3.5px;
}

.row-8 {
  margin-left: -4px;
  margin-right: -4px;
}

.row-8>[class*=col] {
  padding-left: 4px;
  padding-right: 4px;
}

.row-9 {
  margin-left: -4.5px;
  margin-right: -4.5px;
}

.row-9>[class*=col] {
  padding-left: 4.5px;
  padding-right: 4.5px;
}

.row-10 {
  margin-left: -5px;
  margin-right: -5px;
}

.row-10>[class*=col] {
  padding-left: 5px;
  padding-right: 5px;
}

.row-11 {
  margin-left: -5.5px;
  margin-right: -5.5px;
}

.row-11>[class*=col] {
  padding-left: 5.5px;
  padding-right: 5.5px;
}

.row-12 {
  margin-left: -6px;
  margin-right: -6px;
}

.row-12>[class*=col] {
  padding-left: 6px;
  padding-right: 6px;
}

.row-13 {
  margin-left: -6.5px;
  margin-right: -6.5px;
}

.row-13>[class*=col] {
  padding-left: 6.5px;
  padding-right: 6.5px;
}

.row-14 {
  margin-left: -7px;
  margin-right: -7px;
}

.row-14>[class*=col] {
  padding-left: 7px;
  padding-right: 7px;
}

.row-15 {
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.row-15>[class*=col] {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.row-16 {
  margin-left: -8px;
  margin-right: -8px;
}

.row-16>[class*=col] {
  padding-left: 8px;
  padding-right: 8px;
}

.row-17 {
  margin-left: -8.5px;
  margin-right: -8.5px;
}

.row-17>[class*=col] {
  padding-left: 8.5px;
  padding-right: 8.5px;
}

.row-18 {
  margin-left: -9px;
  margin-right: -9px;
}

.row-18>[class*=col] {
  padding-left: 9px;
  padding-right: 9px;
}

.row-19 {
  margin-left: -9.5px;
  margin-right: -9.5px;
}

.row-19>[class*=col] {
  padding-left: 9.5px;
  padding-right: 9.5px;
}

.row-20 {
  margin-left: -10px;
  margin-right: -10px;
}

.row-20>[class*=col] {
  padding-left: 10px;
  padding-right: 10px;
}

.row-21 {
  margin-left: -10.5px;
  margin-right: -10.5px;
}

.row-21>[class*=col] {
  padding-left: 10.5px;
  padding-right: 10.5px;
}

.row-22 {
  margin-left: -11px;
  margin-right: -11px;
}

.row-22>[class*=col] {
  padding-left: 11px;
  padding-right: 11px;
}

.row-23 {
  margin-left: -11.5px;
  margin-right: -11.5px;
}

.row-23>[class*=col] {
  padding-left: 11.5px;
  padding-right: 11.5px;
}

.row-24 {
  margin-left: -12px;
  margin-right: -12px;
}

.row-24>[class*=col] {
  padding-left: 12px;
  padding-right: 12px;
}

.row-25 {
  margin-left: -12.5px;
  margin-right: -12.5px;
}

.row-25>[class*=col] {
  padding-left: 12.5px;
  padding-right: 12.5px;
}

.row-26 {
  margin-left: -13px;
  margin-right: -13px;
}

.row-26>[class*=col] {
  padding-left: 13px;
  padding-right: 13px;
}

.row-27 {
  margin-left: -13.5px;
  margin-right: -13.5px;
}

.row-27>[class*=col] {
  padding-left: 13.5px;
  padding-right: 13.5px;
}

.row-28 {
  margin-left: -14px;
  margin-right: -14px;
}

.row-28>[class*=col] {
  padding-left: 14px;
  padding-right: 14px;
}

.row-29 {
  margin-left: -14.5px;
  margin-right: -14.5px;
}

.row-29>[class*=col] {
  padding-left: 14.5px;
  padding-right: 14.5px;
}

.row-30 {
  margin-left: -15px;
  margin-right: -15px;
}

.row-30>[class*=col] {
  padding-left: 15px;
  padding-right: 15px;
}

/*------- short classes start -------*/
.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media only screen and (max-width: 767.98px) {
  .section-padding {
    padding-top: 63px;
    padding-bottom: 63px;
  }
}

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

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

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

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

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

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

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

.ptb-30 {
  padding: 30px 0;
}

/*------- short classes end -------*/
/*----------- header top area start -----------*/
@media only screen and (min-width: 1600px) {
  .header-wide {
    padding: 0 85px;
  }
}

/* @media only screen and (min-width: 1200px) {
  .header-wide .container {
    max-width: 100%;
  }
} */

.header-top {
  padding: 10px 0;
  border-bottom: 1px solid #efefef;
}

.header-top-settings ul li {
  color: #555555;
  cursor: pointer;
  font-size: 14px;
  position: relative;
  margin-left: 40px;
  position: relative;
  margin-left: 20px;
  padding-left: 20px;
}

.header-top-settings ul li:before {
  top: 50%;
  left: 0;
  width: 1px;
  height: 15px;
  content: "";
  position: absolute;
  background-color: #efefef;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-top-settings ul li:first-child {
  padding-left: 0;
  margin-left: 0;
}

.header-top-settings ul li:first-child:before {
  display: none;
}

.header-top-settings ul li .dropdown-list {
  top: 100%;
  right: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  padding: 15px 15px 20px;
  width: 150px;
  z-index: 9;
  text-align: left;
  background-color: #fff;
  pointer-events: none;
  border: 1px solid #efefef;
}

.header-top-settings ul li .dropdown-list li {
  margin-left: 0;
  padding: 0;
}

.header-top-settings ul li .dropdown-list li a {
  color: #555555;
  font-size: 13px;
  display: block;
  padding: 5px 0 3px;
  text-transform: capitalize;
}

.header-top-settings ul li .dropdown-list li a:hover {
  color: var(--them-color);
}

.header-top-settings ul li .dropdown-list li a img {
  vertical-align: inherit;
}

.header-top-settings ul li .dropdown-list li:before {
  display: none;
}

.header-top-settings ul li:hover .dropdown-list {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.welcome-message p {
  color: #555555;
  font-size: 14px;
  line-height: 1;
}

/*----------- header top area end -----------*/
/*---------- header mini cart start ----------*/
.header-configure-area {
  padding-right: 10px;
}

.header-configure-area ul li {
  line-height: 1;
}


.header-configure-area ul li a {
  font-size: 26px;
  line-height: 1;
  color: var(--gray-color);
  position: relative;
}

.header-configure-area ul li a .notification {
  top: -8px;
  right: -6px;
  position: absolute;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  font-size: 10px;
  color: #fff;
  border-radius: 50%;
  background-color: var(--them-color);
}

.header-configure-area ul li a:hover {
  color: var(--them-color);
}

.header-configure-area ul li:first-child {
  margin-left: 0;
}

.header-configure-area ul li.user-hover {
  position: relative;
}

.header-configure-area ul li.user-hover .dropdown-list {
  position: absolute;
  top: 100%;
  right: 0;
  width: 150px;
  padding: 20px;
  background-color: #fff;
  z-index: 11;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
  border: 1px solid #efefef;
}

.header-configure-area ul li.user-hover .dropdown-list li {
  display: block;
  margin-left: 0;
}

.header-configure-area ul li.user-hover .dropdown-list li a {
  color: #555555;
  font-size: 13px;
  line-height: 1;
  display: block;
  padding: 8px 0;
  text-transform: capitalize;
}

.header-configure-area ul li.user-hover .dropdown-list li a:hover {
  color: var(--them-color);
}

.header-configure-area ul li.user-hover:hover .dropdown-list {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

/*----------- header mini cart area end -----------*/
/*------- header search area start -------*/
.header-search-container {
  position: relative;
}

.header-search-box {
  position: relative;
}

.header-search-box:hover .header-search-btn {
  color: var(--them-color);
}

.header-search-btn {
  font-size: 25px;
  line-height: 1;
  left: 10px;
  top: 50%;
  width: 30px;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-search-field {
  border: none;
  background-color: #f7f7f7;
  border-radius: 30px;
  padding: 10px 20px 10px 50px;
  width: 100%;
}

.search-trigger {
  font-size: 26px;
  color: #222222;
}

.search-box-open {
  top: 100%;
  right: 0;
  width: 300px;
  position: absolute;
  z-index: 5;
  display: block !important;
}

.search-box-open .header-search-field {
  height: 44px;
  border: 1px solid #ddd;
}

/*------- header search area end -------*/
/*-------- header social link start --------*/
.header-social-link a {
  color: #777777;
  font-size: 17px;
  display: inline-block;
  line-height: 1;
  margin-right: 20px;
}

.header-social-link a:last-child {
  margin-right: 0;
}

.header-social-link a:hover {
  color: var(--them-color);
}

/*-------- header social link end --------*/
/*---------- main menu style start ---------*/
.main-menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
}

.main-menu ul li {
  position: relative;
}

.main-menu ul li a {
  color: var(--white-color);
  font-size: 18px;
  padding: 37px 15px;
  font-weight: 400;
  display: block;
  text-transform: capitalize;
  font-family: var(--mainfont);
  font-family: var(--mainfont);
}

.main-menu ul li a i {
  font-size: 14px;
  padding: 0 3px;
}

.main-menu ul li:first-child a {
  padding-left: 15px;
}

.main-menu ul li:hover>a,
.main-menu ul li.active>a {
  color: var(--them-color);
}

.main-menu ul li ul.dropdown {
  top: calc(100% - 1px);
  left: 0;
  width: 220px;
  position: absolute;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  pointer-events: none;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  border: 1px solid #efefef;
}

.main-menu ul li ul.dropdown li {
  margin-right: 0;
  border-right: none;
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.main-menu ul li ul.dropdown li a {
  color: #555555;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 20px;
  text-transform: capitalize;
  position: relative;
  border-bottom: 1px dashed #efefef;
  z-index: 1;
}

.main-menu ul li ul.dropdown li a:before {
  width: 10px;
  height: 1px;
  left: 20px;
  top: 50%;
  content: " ";
  position: absolute;
  background-color: var(--them-color);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  z-index: -1;
}

.main-menu ul li ul.dropdown li a i {
  float: right;
  padding-top: 5px;
}

.main-menu ul li ul.dropdown li:hover>a {
  color: var(--them-color);
  background-color: #fff;
  padding-left: 35px;
}

.main-menu ul li ul.dropdown li:hover>a:before {
  opacity: 1;
  visibility: visible;
}

.main-menu ul li ul.dropdown li:hover>ul.dropdown {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.main-menu ul li ul.dropdown li ul.dropdown {
  top: 100%;
  left: 100%;
  position: absolute;
  width: 250px;
  opacity: 0;
  visibility: hidden;
}

.main-menu ul li ul.dropdown li:last-child a {
  border-bottom: none;
}

.main-menu ul li ul.megamenu {
  width: 100%;
  max-width: 1110px;
  padding: 30px;
  left: 50%;
  -webkit-transform: translate(-50%, 20px);
  -ms-transform: translate(-50%, 20px);
  transform: translate(-50%, 20px);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu ul li ul.megamenu {
    max-width: 100%;
  }
}

.main-menu ul li ul.megamenu li {
  -webkit-flex-basis: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}

.main-menu ul li ul.megamenu li.mega-title {
  color: #222222;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.main-menu ul li ul.megamenu li.mega-title span {
  position: relative;
  margin-bottom: 15px;
  display: inline-block;
}

.main-menu ul li ul.megamenu li.mega-title span:before,
.main-menu ul li ul.megamenu li.mega-title span:after {
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  content: " ";
  position: absolute;
  background-color: #ebebeb;
}

.main-menu ul li ul.megamenu li.mega-title span:after {
  width: 50%;
  background-color: var(--them-color);
}

.main-menu ul li ul.megamenu li a {
  padding: 6px 0;
  border-bottom: none;
}

.main-menu ul li ul.megamenu li a:before {
  left: 0;
}

.main-menu ul li ul.megamenu li ul li {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.main-menu ul li ul.megamenu li:hover>a {
  color: var(--them-color);
  padding-left: 15px;
}

.main-menu ul li ul.megamenu li.megamenu-banners {
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  margin-top: 25px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding-right: 10px;
}

.main-menu ul li ul.megamenu li.megamenu-banners img {
  width: 100%;
}

.main-menu ul li ul.megamenu li.megamenu-banners a:before {
  display: none;
}

.main-menu ul li ul.megamenu li.megamenu-banners:last-child {
  padding-right: 0;
  padding-left: 10px;
}

.main-menu ul li ul.megamenu li.megamenu-banners:hover {
  opacity: 0.6;
}

.main-menu ul li ul.megamenu li.megamenu-banners:hover a {
  padding-left: 0 !important;
}

.main-menu ul li:hover ul.dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

.main-menu ul li:hover ul.megamenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.main-menu ul.header-style-4>li a {
  padding: 25px 15px;
}

.main-menu ul.header-style-4>li:first-child>a {
  padding-left: 0;
}

.header-main-area {
  background: var(--black-color);
}

/*---------- main menu style end ---------*/
/*------ sticky menu style start ------*/
.header-transparent {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  position: absolute;
  z-index: 1;
}

.sticky.is-sticky {
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 9;
  background-color: var(--black-color);
  -webkit-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
  -webkit-animation: 900ms cubic-bezier(0.2, 1, 0.22, 1) 0s normal none 1 running fadeInDown;
  animation: 900ms cubic-bezier(0.2, 1, 0.22, 1) 0s normal none 1 running fadeInDown;
}

@media only screen and (min-width: 1600px) {
  .sticky.is-sticky {
    padding: 0 85px;
  }
}

.sticky.is-sticky .main-menu li a {
  padding: 20px 15px;
}

.sticky.is-sticky .main-menu li:first-child a {
  padding-left: 0;
}

.sticky.is-sticky .main-menu li .dropdown li a {
  padding: 10px 20px;
}

.sticky.is-sticky .main-menu li .dropdown li:hover>a {
  padding-left: 35px;
}

.sticky.is-sticky .main-menu li .megamenu li a {
  padding: 6px 0;
}

.sticky.is-sticky .main-menu li .megamenu li:hover>a {
  padding-left: 15px;
}

/*------ sticky menu style end ------*/
/*------- Buttons Style here -------*/
.btn {
  font-size: 14px;
  color: #222222;
  line-height: 1;
}

.btn-text {
  font-size: 16px;
  position: relative;
  pointer-events: visible;
  text-transform: capitalize;
}

.btn-text:before {
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  position: absolute;
  background-color: #222222;
}

.btn-text:hover {
  color: var(--them-color);
}

.btn-text:hover:before {
  background-color: var(--them-color);
}

.btn-cart {
  padding: 12px 25px;
  background-color: #fff;
  border-radius: 30px;
  text-transform: capitalize;
  -webkit-box-shadow: 0 2px 1px 0.5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 1px 0.5px rgba(0, 0, 0, 0.05);
}

.btn-cart:hover {
  color: #fff;
  background-color: var(--them-color);
}

.btn-cart2 {
  height: 40px;
  color: #fff;
  line-height: 40px;
  border-radius: 50px;
  padding: 0 25px;
  background-color: var(--them-color);
}

.btn-cart2:hover {
  color: #fff;
  background-color: #222222;
}

.btn-sqr {
  color: #fff;
  font-size: 15px;
  border-radius: 0;
  background-color: var(--them-color);
  padding: 12px 25px;
}

.btn-sqr:hover {
  color: #fff;
  background-color: #222222;
}

/*----- mobile menu start -----*/
.mobile-header {
  padding: 15px 0;
  background: #000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 999;
}

.mobile-header.is-sticky {
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-logo {
  max-width: 120px;
  width: 100%;
}

.mobile-logo img {
  max-height: 100px;
  object-fit: contain;
  /* Ensure dark logo is visible on black bg */
}

.mobile-main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-toggler {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.user-menu {
  position: relative;
  line-height: 1;
}

.user-menu>a {
  font-size: 22px;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgb(255 255 255 / 12%);
}

.user-menu:hover>a {
  color: var(--them-color);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.user-menu .dropdown-list {
  position: absolute;
  top: 140%;
  right: -10px;
  width: 170px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  padding: 8px;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Caret for proper dropdown */
.user-menu .dropdown-list::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 20px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(255, 255, 255, 0.98);
}

.user-menu:hover .dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.user-menu .dropdown-list li a {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
  color: #222;
  text-transform: capitalize;
  border-radius: 8px;
  transition: all 0.25s ease;
  font-weight: 500;
}

.user-menu .dropdown-list li a:hover {
  color: #fff;
  background: var(--them-color);
  padding-left: 18px;
}

.mini-cart-wrap a {
  font-size: 22px;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgb(255 255 255 / 12%);
  transition: all 0.3s ease;
}

.mini-cart-wrap a:hover {
  color: var(--them-color);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.mini-cart-wrap a .notification {
  position: absolute;
  top: -6px;
  right: -2px;
  background: var(--them-color);
  color: #fff;
  font-size: 10px;
  width: 20px;
  height: 20px;
  text-align: center;
  border-radius: 50%;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(194, 153, 88, 0.5);
  border: 1.5px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* High-End Modern Hamburger Toggle */
.mobile-menu-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.mobile-menu-btn #checkbox {
  display: none;
}

.mobile-menu-btn .toggle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border-radius: 50%;
  background: rgb(255 255 255 / 12%);
}

.mobile-menu-btn .menu-icon {
  font-size: 24px;
  color: #fff;
  transition: all 0.3s ease;
}

.mobile-menu-btn .menu-lottie {
  display: none;
}

.mobile-menu-btn:hover .toggle {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--them-color);
}

.mobile-menu-btn:hover .menu-icon {
  color: var(--them-color);
}

/* Toggle Logic: Show Lottie when checked/active */
.mobile-menu-btn #checkbox:checked~.toggle .menu-icon,
.mobile-menu-btn.active .menu-icon {
  display: none !important;
}

.mobile-menu-btn #checkbox:checked~.toggle .menu-lottie,
.mobile-menu-btn.active .menu-lottie {
  display: block !important;
}

.mobile-menu-btn #checkbox:checked~.toggle,
.mobile-menu-btn.active .toggle {
  border-color: var(--them-color);
  background: rgba(194, 153, 88, 0.15);
}

.main-header-toggle {
  width: 95px;
  display: flex;
  justify-content: start;
}

/* .mobile-navigation {
  overflow: hidden;
  max-height: 250px;
} */

.mobile-navigation nav {
  height: 100%;
}

.mobile-menu {
  margin-top: 25px;
  height: 100%;
}

.mobile-menu li {
  margin-bottom: 0;
  position: relative;
}

.mobile-menu li>a {
  font-size: 16px;
  font-weight: 500;
  color: var(--white-color);
  text-transform: capitalize;
  display: block;
  padding: 15px 0;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  /* Minimalist bottom border */
  transition: all 0.4s ease;
}

.mobile-menu li>a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--them-color);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-menu li>a:hover {
  color: var(--them-color);
  padding-left: 10px;
}

.mobile-menu li>a:hover::after {
  width: 100%;
}

.mobile-menu li:last-child>a {
  border-bottom: none;
}

.mobile-menu li.menu-item-has-children .menu-expand {
  position: absolute;
  right: 15px;
  top: 10px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: var(--white-color);
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}

.mobile-menu li.menu-item-has-children .menu-expand i:before {
  content: "\f107";
  font-family: "FontAwesome";
  font-style: normal;
}

.mobile-menu li.menu-item-has-children.active>.menu-expand i:before {
  content: "\f106";
  color: var(--them-color);
}

.mobile-menu li ul.dropdown {
  background: rgba(255, 255, 255, 0.02);
  padding: 10px 15px;
  border-radius: 12px;
  margin-top: 5px;
  display: none;
}

.mobile-menu li ul.dropdown li a {
  font-size: 14px;
  color: #ccc;
  padding: 8px 15px;
  display: block;
}

.mobile-menu li ul.dropdown li a:hover {
  color: var(--them-color);
}

/*------- Off-canvas Contact & Social Widgets -------*/
.offcanvas-widget-area {
  margin-top: auto;
  padding: 40px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.off-canvas-contact-widget li {
  color: var(--white-color);
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.off-canvas-contact-widget li i {
  width: 40px;
  height: 40px;
  background: rgb(255 255 255 / 12%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--them-color);
  font-size: 18px;
  /* Optimized for Phosphor */
  transition: all 0.3s ease;
}

.off-canvas-contact-widget li a {
  color: #aaa;
  transition: all 0.3s ease;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.off-canvas-contact-widget li:hover i {
  background: var(--them-color);
  color: var(--white-color);
  border-color: var(--them-color);
  transform: rotate(5deg) scale(1.1);
}

.off-canvas-contact-widget li:hover a {
  color: var(--white-color);
}

.off-canvas-social-widget {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.off-canvas-social-widget a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.off-canvas-social-widget a:hover {
  background: var(--them-color);
  border-color: var(--them-color);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(194, 153, 88, 0.3);
}

/*------ offcanvas widget area end ------*/
.off-canvas-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  z-index: 9999;
}

.off-canvas-wrapper.open {
  opacity: 1;
  visibility: visible;
}

.off-canvas-wrapper.open .off-canvas-inner-content {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.off-canvas-wrapper .off-canvas-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  content: "";
  cursor: url("../img/icon/cancel.png"), auto;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.off-canvas-wrapper .off-canvas-inner-content {
  background-color: var(--black-color);
  width: 300px;
  padding: 20px;
  height: 100%;
  position: relative;
  -webkit-transform: translateX(calc(-100% - 50px));
  -ms-transform: translateX(calc(-100% - 50px));
  transform: translateX(calc(-100% - 50px));
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

@media only screen and (max-width: 479.98px) {
  .off-canvas-wrapper .off-canvas-inner-content {
    width: 260px;
    padding: 15px;
  }
}

.off-canvas-wrapper .btn-close-off-canvas {
  top: 0;
  left: 100%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #fff;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  position: absolute;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  background-color: var(--them-color);
}

.off-canvas-wrapper .btn-close-off-canvas i {
  font-size: 40px;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  display: block;
  line-height: 40px;
}

.off-canvas-wrapper .btn-close-off-canvas:hover i {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.off-canvas-wrapper .off-canvas-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  height: 100%;
}

.search-box-offcanvas form {
  position: relative;
}

.search-box-offcanvas form input {
  color: #666;
  font-size: 13px;
  width: 100%;
  height: 40px;
  border: none;
  padding: 0 40px 0 10px;
  background-color: #f2f2f2;
}

.search-box-offcanvas form .search-btn {
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  line-height: 42px;
  font-size: 20px;
  color: #222222;
  position: absolute;
}

.search-box-offcanvas form .search-btn:hover {
  color: var(--them-color);
}

/*------- mobile top bar settings start -------*/
.mobile-settings {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #efefef;
}

.mobile-settings li {
  margin-bottom: 5px;
}

.mobile-settings .nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-toggle {
  font-size: 14px;
  color: #555555;
  cursor: pointer;
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-toggle i {
  font-size: 12px;
  padding-left: 5px;
  vertical-align: middle;
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-toggle:hover {
  color: var(--them-color);
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-toggle:after {
  display: none;
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-menu {
  padding: 0;
  border-color: #efefef;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-menu.show {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.mobile-settings .nav .mobile-top-dropdown .dropdown-menu .dropdown-item {
  font-size: 13px;
  color: #555555;
  padding: 6px 15px;
}

/*------- mobile top bar settings end -------*/
/*-------- off canvas mini cart start --------*/
.minicart-inner {
  top: 0;
  left: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

.minicart-inner .offcanvas-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: url("../img/icon/cancel.png"), auto;
}

.minicart-inner.show {
  opacity: 1;
  visibility: visible;
}

.minicart-inner.show .minicart-inner-content {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.minicart-inner .minicart-close {
  width: 50px;
  height: 50px;
  text-align: center;
  background-color: var(--them-color);
  color: #fff;
  font-size: 50px;
  cursor: pointer;
  top: 0;
  right: 375px;
  position: absolute;
}

.minicart-inner .minicart-close i {
  display: block;
  line-height: 50px;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}

.minicart-inner .minicart-close:hover i {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.minicart-inner .minicart-inner-content {
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  max-width: 375px;
  position: absolute;
  background-color: #fff;
  -webkit-transform: translateX(calc(100% + 50px));
  -ms-transform: translateX(calc(100% + 50px));
  transform: translateX(calc(100% + 50px));
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  padding: 50px 20px;
}

.minicart-content-box {
  overflow: auto;
  height: 100%;
  padding-right: 30px;
  margin-right: -15px;
}

.minicart-item-wrapper {
  border-bottom: 1px solid #efefef;
}

.minicart-item-wrapper ul li {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #efefef;
}

.minicart-item-wrapper ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.minicart-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.minicart-thumb {
  max-width: 85px;
  -webkit-flex-basis: 85px;
  -ms-flex-preferred-size: 85px;
  flex-basis: 85px;
}

.minicart-content {
  padding: 0 10px;
  max-width: calc(100% - 115px);
  -webkit-flex-basis: calc(100% - 115px);
  -ms-flex-preferred-size: calc(100% - 115px);
  flex-basis: calc(100% - 115px);
}

.minicart-content .product-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 10px;
}

.minicart-content .product-name a {
  color: #222222;
}

.minicart-content .product-name a:hover {
  color: var(--them-color);
}

.minicart-content .cart-quantity {
  font-size: 12px;
  color: #555555;
  line-height: 1;
}

.minicart-content .cart-quantity strong {
  font-size: 16px;
  font-weight: 400;
  vertical-align: text-bottom;
}

.minicart-content .cart-price {
  color: var(--them-color);
  font-size: 14px;
  line-height: 1;
}

.minicart-remove {
  max-width: 30px;
  -webkit-flex-basis: 30px;
  -ms-flex-preferred-size: 30px;
  flex-basis: 30px;
  text-align: center;
  font-size: 18px;
  line-height: 1;
  color: #222222;
}

.minicart-remove:hover {
  color: var(--them-color);
}

.minicart-pricing-box {
  border-bottom: 1px solid #efefef;
  padding-bottom: 20px;
  margin-bottom: 20px;
  padding-top: 15px;
}

.minicart-pricing-box li {
  margin-bottom: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.minicart-pricing-box li span {
  font-size: 14px;
  color: #222222;
  text-transform: capitalize;
}

.minicart-pricing-box li span strong {
  color: var(--them-color);
  font-weight: 400;
}

.minicart-pricing-box li.total span {
  font-size: 16px;
}

.minicart-pricing-box li:last-child {
  margin-bottom: 0;
}

.minicart-button a {
  color: #222222;
  font-size: 14px;
  display: block;
  font-weight: 700;
  line-height: 1;
  padding: 17px 0;
  background-color: #f3f3f3;
  border-radius: 40px;
  text-align: center;
  margin-bottom: 10px;
}

.minicart-button a i {
  padding-right: 5px;
}

.minicart-button a:hover {
  color: #fff;
  letter-spacing: 1.1px;
  background-color: var(--them-color);
}

.minicart-button a:last-child {
  margin-bottom: 0;
}

/*-------- off canvas mini cart end --------*/
/*------ hero slider area css start ------*/
/*-------------------------
02. Slider area
--------------------------*/
.hero-slider-item {
  height: 530px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (min-width: 1600px) {
  .hero-slider-item {
    height: 670px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
  .hero-slider-item {
    height: 400px;
  }
}

@media only screen and (max-width: 575.98px) {
  .hero-slider-item {
    height: 350px;
  }
}

.hero-style-five .hero-slider-item {
  height: 800px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-style-five .hero-slider-item {
    height: 530px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
  .hero-style-five .hero-slider-item {
    height: 400px;
  }
}

@media only screen and (max-width: 575.98px) {
  .hero-style-five .hero-slider-item {
    height: 350px;
  }
}

.hero-slider-content {
  position: relative;
}

@media only screen and (max-width: 767.98px) {
  .hero-slider-content {
    padding-right: 150px;
  }
}

@media only screen and (max-width: 575.98px) {
  .hero-slider-content {
    padding-right: 90px;
  }
}

@media only screen and (max-width: 479.98px) {
  .hero-slider-content {
    padding-right: 0;
  }
}

.hero-slider-content .slide-title {
  font-size: 60px;
  font-weight: normal;
  line-height: 1;
}

.hero-slider-content .slide-title span {
  display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-slider-content .slide-title {
    font-size: 50px;
  }
}

@media only screen and (max-width: 767.98px) {
  .hero-slider-content .slide-title {
    font-size: 40px;
    line-height: 1.2;
  }
}

@media only screen and (max-width: 575.98px) {
  .hero-slider-content .slide-title {
    font-size: 35px;
  }
}

@media only screen and (max-width: 479.98px) {
  .hero-slider-content .slide-title {
    font-size: 30px;
  }
}

.hero-slider-content .slide-desc {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.3;
  color: #222222;
  padding-top: 20px;
}

@media only screen and (max-width: 575.98px) {
  .hero-slider-content .slide-desc {
    padding-top: 10px;
  }
}

.btn-hero {
  color: #fff;
  font-size: 15px;
  line-height: 1;
  padding: 14px 30px;
  display: inline-block;
  border-radius: 50px;
  background-color: var(--them-color);
  margin-top: 38px;
}

@media only screen and (max-width: 575.98px) {
  .btn-hero {
    margin-top: 25px;
  }
}

.btn-hero:hover {
  color: #fff;
  background-color: #222222;
}

.hero-overlay {
  position: relative;
}

.hero-overlay:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.7);
  display: none;
}

@media only screen and (max-width: 767.98px) {
  .hero-overlay:before {
    display: block;
  }
}

/*------ hero slider area css end ------*/
.slick-active .hero-slider-content.slide-1 h2 {
  -webkit-animation: bounceIn 2s linear alternate;
  animation: bounceIn 2s linear alternate;
}

.slick-active .hero-slider-content.slide-1 h4 {
  -webkit-animation: zoomIn 1s linear alternate;
  animation: zoomIn 1s linear alternate;
}

.slick-active .hero-slider-content.slide-1 a {
  -webkit-animation: slideInUp 0.5s linear alternate;
  animation: slideInUp 0.5s linear alternate;
}

.slick-active .hero-slider-content.slide-2 h2 {
  -webkit-animation: bounceIn 1.5s linear alternate;
  animation: bounceIn 1.5s linear alternate;
}

.slick-active .hero-slider-content.slide-2 h4 {
  -webkit-animation: fadeInLeft 1s linear alternate;
  animation: fadeInLeft 1s linear alternate;
}

.slick-active .hero-slider-content.slide-2 a {
  -webkit-animation: slideInUp 0.5s linear alternate;
  animation: slideInUp 0.5s linear alternate;
}

.slick-active .hero-slider-content.slide-3 h2 {
  -webkit-animation: fadeInUp 1000ms linear alternate;
  animation: fadeInUp 1000ms linear alternate;
}

.slick-active .hero-slider-content.slide-3 h4 {
  -webkit-animation: bounceIn 600ms linear alternate;
  animation: bounceIn 600ms linear alternate;
}

.slick-active .hero-slider-content.slide-3 a {
  -webkit-animation: fadeInUp 1400ms linear alternate;
  animation: fadeInUp 1400ms linear alternate;
}

.slider-item {
  position: relative;
  overflow: hidden;
}

.slider-item:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  background-color: #000;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 0.4s;
}

@media only screen and (max-width: 767.98px) {
  .slider-item:before {
    opacity: 0.6;
    visibility: visible;
  }
}

.slider-item:hover:before {
  opacity: 0.6;
  visibility: visible;
}

.slider-item:hover .slider-thumb img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.slider-item:hover .slider-item-content {
  -webkit-transform: translateY(-50%) scale(1);
  -ms-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  opacity: 1;
  visibility: visible;
}

.slider-item .slider-thumb img {
  width: 100%;
}

.slider-item-content {
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  text-align: center;
  padding: 0 30px;
  z-index: 2;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateY(-50%) scale(0.8);
  -ms-transform: translateY(-50%) scale(0.8);
  transform: translateY(-50%) scale(0.8);
  opacity: 0;
  visibility: hidden;
}

@media only screen and (max-width: 767.98px) {
  .slider-item-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
  }
}

.slider-item-content h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  padding-bottom: 6px;
  overflow-wrap: break-word;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-item-content h2 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 479.98px) {
  .slider-item-content h2 {
    font-size: 26px;
  }
}

.slider-item-content h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: capitalize;
  font-family: "Lato", sans-serif;
}

@media only screen and (max-width: 479.98px) {
  .slider-item-content h3 {
    font-size: 22px;
  }
}

.slider-item-content .btn-text {
  margin-top: 15px;
  color: #fff;
}

.slider-item-content .btn-text:before {
  background-color: #fff;
}

.slider-item-content .btn-text:hover {
  color: var(--them-color);
}

.slider-item-content .btn-text:hover:before {
  background-color: var(--them-color);
}


/*------ section title start ------*/
.section-title {
  margin-top: -7px;
  margin-bottom: 37px;
}

.section-title .title {
  font-size: 45px;
  text-transform: capitalize;
  color: #222222;
  position: relative;
}

@media only screen and (max-width: 767.98px) {
  .section-title .title {
    font-size: 26px;
  }
}

.section-title .sub-title {
  font-size: 15px;
  padding-top: 6px;
  font-size: 16px;
  color: var(--black-color);
  font-family: var(--primary-font);
}

.title-shape {
  margin-bottom: 20px;
  line-height: 1;
}

.title-shape img {
  max-width: 250px;
  display: block;
  margin: 0 auto;
}

@-webkit-keyframes shine {
  0% {
    background-position: -500%;
  }

  100% {
    background-position: 100%;
  }
}

@keyframes shine {
  0% {
    background-position: -500%;
  }

  100% {
    background-position: 100%;
  }
}

.section-title-append {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  margin-top: -4px;
  margin-bottom: 18px;
  line-height: 1;
}

.section-title-append:after {
  top: 50%;
  right: 0;
  width: 100%;
  height: 1px;
  content: "";
  position: absolute;
  background-color: #efefef;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  margin-top: -3px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-append:after {
    margin-top: 2px;
  }
}

.section-title-append h4 {
  display: inline-block;
  line-height: 1;
  text-transform: capitalize;
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding-right: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title-append h4 {
    font-size: 16px;
  }
}

/*------ section title end ------*/
/*------- modern group product start -------*/
.modern-group-banner {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.modern-group-banner .banner-img-link {
  display: block;
  overflow: hidden;
}

.modern-group-banner .zoom-img {
  width: 100%;
  height: auto;
  transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.modern-group-banner:hover .zoom-img {
  transform: scale(1.1);
}

.modern-group-item {
  display: flex;
  align-items: center;
  padding: 15px;
  margin-bottom: 15px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.modern-group-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-color: var(--them-color);
}

.modern-group-item .group-item-thumb {
  flex: 0 0 80px;
  margin-right: 15px;
  overflow: hidden;
  border-radius: 8px;
}

.modern-group-item .group-item-thumb img {
  width: 100%;
  transition: transform 0.4s ease;
}

.modern-group-item:hover .group-item-thumb img {
  transform: scale(1.1);
}

.modern-group-item .group-item-desc {
  flex: 1;
}

.group-product-name a {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  margin-bottom: 5px;
  display: block;
}

.group-product-name a:hover {
  color: var(--them-color);
}

.modern-group-item .price-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modern-group-item .price-regular {
  font-weight: 700;
  color: var(--them-color);
  font-size: 16px;
}

.modern-group-item .price-old {
  font-size: 13px;
  color: #999;
}

.group-product-area {
  background-color: #fcfcfc;
}

/*------- modern group product end -------*/


/*------- common style css start -------*/
/*-------- Custom Checkbox Style start --------*/
.custom-checkbox.custom-control,
.custom-radio.custom-control {
  min-height: auto;
  padding-left: 1.5rem;
}

.custom-checkbox .custom-control-label,
.custom-radio .custom-control-label {
  font-size: 14px;
  line-height: 1;
  padding-left: 10px;
  font-weight: 400;
  display: block;
  cursor: pointer;
  position: relative;
}

.custom-checkbox .custom-control-label:before,
.custom-radio .custom-control-label:before {
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 0;
  height: 15px;
  top: 0;
  width: 15px;
  content: "";
  position: absolute;
  left: -1.5rem;
}

.custom-checkbox .custom-control-label:after,
.custom-radio .custom-control-label:after {
  background-size: 10px 10px;
  height: 15px;
  top: 0;
  content: "";
  position: absolute;
  left: -1.5rem;
}

.custom-checkbox .custom-control-label a,
.custom-radio .custom-control-label a {
  color: #222222;
  font-weight: 500;
}

.custom-checkbox .custom-control-label a:hover,
.custom-radio .custom-control-label a:hover {
  color: var(--them-color);
}

.custom-checkbox input,
.custom-checkbox .custom-control-input,
.custom-radio input,
.custom-radio .custom-control-input {
  outline: none;
  display: none;
}

.custom-checkbox input:focus~.custom-control-label:before,
.custom-checkbox input:focus label:before,
.custom-checkbox .custom-control-input:focus~.custom-control-label:before,
.custom-checkbox .custom-control-input:focus label:before,
.custom-radio input:focus~.custom-control-label:before,
.custom-radio input:focus label:before,
.custom-radio .custom-control-input:focus~.custom-control-label:before,
.custom-radio .custom-control-input:focus label:before {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.custom-checkbox input:checked~.custom-control-label:before,
.custom-checkbox input:checked label:before,
.custom-checkbox .custom-control-input:checked~.custom-control-label:before,
.custom-checkbox .custom-control-input:checked label:before,
.custom-radio input:checked~.custom-control-label:before,
.custom-radio input:checked label:before,
.custom-radio .custom-control-input:checked~.custom-control-label:before,
.custom-radio .custom-control-input:checked label:before {
  background-color: var(--them-color);
  border-color: var(--them-color);
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
  width: 15px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

/*-------- Custom Checkbox Style end --------*/
/*------- Custom Radio Button Style start -------*/
.custom-radio label:before,
.custom-radio .custom-control-label:before {
  border-radius: 50%;
  height: 14px;
  width: 14px;
}

.custom-radio label::after,
.custom-radio .custom-control-label::after {
  background-size: 10px 10px;
  left: -22px;
  top: 2px;
  height: 10px;
  width: 10px;
}

.custom-radio .custom-control-input:checked~.custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

/*------- Custom Radio Button Style end -------*/
.bg-gray {
  background-color: #f4f4f4;
}

/*------ twitter feed start ------*/
.twitter-feed-content {
  padding: 32px 0;
  border-bottom: 1px solid #efefef;
}

.twitter-feed-content p {
  color: #888;
}

.twitter-feed-content p a {
  color: var(--them-color);
}

.twitter-feed-content p a:hover {
  text-decoration: underline;
}

/*------ twitter feed end ------*/
/*----- product tab menu start -----*/
.product-tab-menu {
  margin-top: -6px;
  margin-bottom: 35px;
}

/* ===== TAB WRAPPER ===== */
.product-tab-menu ul {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 12px 20px;
  margin: 0;
  list-style: none;

  /* White glass background */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);

  /* Rounded pill shape */
  border-radius: 50px;

  /* Border + Shadow */
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ===== TAB ITEM ===== */
.product-tab-menu ul li {
  position: relative;
}

/* ===== TAB LINK ===== */
.product-tab-menu ul li a {
  position: relative;
  display: inline-block;
  padding: 10px 22px;
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.4s ease;
}

/* ===== HOVER BACKGROUND ===== */
.product-tab-menu ul li a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--black-color);
  border-radius: 30px;
  transform: scale(0);
  transition: 0.4s ease;
  z-index: -1;
}

/* ===== HOVER ===== */
.product-tab-menu ul li a:hover::before {
  transform: scale(1);
}

.product-tab-menu ul li a:hover {
  color: #fff;
}

/* ===== UNDERLINE EFFECT ===== */
.product-tab-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0%;
  height: 2px;
  background: var(--them-color);
  transition: 0.4s ease;
  transform: translateX(-50%);
}

/* Hover underline */
.product-tab-menu ul li a:hover::after {
  width: 60%;
}

/* ===== ACTIVE TAB ===== */
.product-tab-menu ul li a.active {
  background: var(--black-color);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Active underline */
.product-tab-menu ul li a.active::after {
  width: 60%;
}

/* ===== HOVER LIFT ===== */
.product-tab-menu ul li a:hover {
  transform: translateY(-3px);
}

/* Hover Text White */
.product-tab-menu ul li a:hover {
  color: #fff !important;
}

/* Ensure background also visible */
.product-tab-menu ul li a:hover::before {
  transform: scale(1);
}

.tab-content .tab-pane.show.active .product-item {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

/*----- product tab menu start -----*/
/*----- brand logo style start -----*/
.brand-logo-carousel {
  padding: 30px 0;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}

.brand-item img {
  margin: auto;
}

/*----- brand logo style end -----*/
/*----- hot deals item start -----*/
.hot-deals-item {
  border: 1px solid var(--them-color);
  border-radius: 5px;
}

.hot-deals-item .product-caption {
  padding: 20px;
}

@media only screen and (max-width: 767.98px) {
  .hot-deals-item .product-caption {
    padding: 20px 10px;
  }
}

.hot-deals-item .manufacturer-name {
  padding-bottom: 5px;
}

.hot-deals-item .product-name {
  font-size: 20px;
  padding-bottom: 30px;
}

.hot-deals-item .price-box {
  font-size: 21px;
  padding-top: 8px;
}

.progress {
  height: 15px;
  border-radius: 50px;
}

.progress-quantity {
  position: relative;
  margin-top: 52px;
}

.progress-bar {
  background-color: var(--them-color) !important;
  width: 60%;
}

.progress-bar:nth-child(2) {
  width: 70%;
}

.progress-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: calc(-100% - 8px);
  left: 0;
  width: 100%;
  line-height: 1;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-sold,
.product-available {
  font-size: 14px;
  color: #777777;
}

.product-sold span,
.product-available span {
  color: var(--them-color);
  font-weight: 700;
}

.product-countdown {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 30px 0;
}

.product-countdown .single-countdown {
  height: 45px;
  width: 45px;
  text-align: center;
  line-height: 45px;
  margin-right: 10px;
  border-radius: 50%;
  background-color: #eaeaea;
}

.product-countdown .single-countdown__time {
  font-size: 16px;
  display: inline-block;
  color: #222222;
}

.product-countdown .single-countdown__text {
  font-size: 11px;
  display: block;
  color: #222222;
  line-height: 1;
  margin-top: 5px;
  text-transform: uppercase;
}

.product-countdown .single-countdown:last-child {
  margin-right: 0;
}

.product-countdown--style-two {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.product-details-des .product-countdown {
  margin: 20px 0 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

/*----- hot deals item start -----*/
/*------ Instagram Feed Area Start ------*/
.instagram-item {
  position: relative;
  z-index: 1;
}

.instagram-item:before {
  background-color: rgba(0, 0, 0, 0.4);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  height: 100%;
  width: 100%;
}

.instagram-item .instagram-hvr-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.instagram-item .instagram-hvr-content span {
  color: #fff;
  margin-right: 20px;
}

.instagram-item .instagram-hvr-content span:last-child {
  margin-right: 0;
}

.instagram-item .instagram-hvr-content span i.fa {
  margin-right: 5px;
}

.instagram-item:hover:before {
  opacity: 1;
  visibility: visible;
}

.instagram-item:hover .instagram-hvr-content {
  opacity: 1;
  visibility: visible;
}

/*------ Instagram Feed Area End ------*/
.policy-list:not(:last-child) {
  margin-bottom: 40px;
}

@media only screen and (max-width: 767.98px) {
  .policy-list:not(:last-child) {
    margin-bottom: 25px;
  }
}

.policy-list a {
  color: var(--them-color);
}

.policy-title {
  margin-bottom: 10px;
}

/*------- common style css end -------*/
/*------- product item start -------*/
.product-item {
  overflow: hidden;
}

.product-item .color-categories {
  padding: 13px 0 6px;
}

.product-item:hover .product-thumb .sec-img,
.product-list-item:hover .product-thumb .sec-img {
  opacity: 1;
  visibility: visible;
}

.product-item:hover .product-thumb .pri-img,
.product-list-item:hover .product-thumb .pri-img {
  opacity: 0;
  visibility: hidden;
}

.product-item:hover .button-group a,
.product-list-item:hover .button-group a {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.product-item:hover .cart-hover,
.product-list-item:hover .cart-hover {
  bottom: 15px;
  opacity: 1;
  visibility: visible;
}

.product-thumb {
  position: relative;
}

.product-thumb img {
  width: 100%;
  height: 400px;
  /* object-fit: cover; */
}

.product-thumb .sec-img {
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.product-caption {
  padding-top: 17px;
}

.product-caption .product-name {
  font-weight: 400;
  line-height: 1.2;
  padding-bottom: 8px;
}

.product-caption .product-name a {
  font-family: var(--mainfont);
  font-size: 20px;
  color: #222222;
  text-transform: capitalize;
}

.product-caption .product-name a:hover {
  color: var(--them-color);
}

.manufacturer-name {
  font-size: 18px;
  color: var(--black-color);
  font-family: var(--primary-font);
  padding-bottom: 5px;
  line-height: 1;
}

.manufacturer-name a {
  font-size: 14px;
  line-height: 1;
  color: #777777;
  text-transform: capitalize;
}

.manufacturer-name a:hover {
  color: var(--them-color);
}

.color-categories {
  line-height: 1;
}

.color-categories li {
  display: inline-block;
  padding: 1px;
  border-radius: 50%;
  border: 1px solid #efefef;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.color-categories li:hover {
  border-color: var(--them-color);
}

.color-categories li a {
  height: 12px;
  width: 12px;
  display: block;
  border-radius: 50%;
}

.c-lightblue {
  background-color: #b0c4de;
}

.c-darktan {
  background-color: #aa9e78;
}

.c-grey {
  background-color: #808080;
}

.c-brown {
  background-color: #964B00;
}

.button-group {
  right: 15px;
  top: 15px;
  position: absolute;
}

.button-group a {
  width: 38px;
  height: 38px;
  display: block;
  font-size: 18px;
  line-height: 42px;
  color: #222222;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 10px;
  background-color: #fff;
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
}

.button-group a span {
  display: block;
}

.button-group a:hover {
  color: var(--them-color);
}

.button-group a.wishlist-active {
  color: #ff0000 !important;
  background-color: #fff !important;
}

.button-group a.wishlist-active i {
  font-size: 16px;
  /* slightly smaller for filled heart to look natural */
}

.cart-hover {
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.product-label {
  background: var(--them-color);
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  left: 20px;
  line-height: 1;
  min-width: 46px;
  padding: 4px 12px;
  position: absolute;
  text-align: center;
  text-transform: capitalize;
  z-index: 3;
}

.product-label span {
  display: block;
  margin-top: -1px;
}

.product-label.discount {
  background-color: #222222;
}

.product-label:nth-child(1) {
  top: 20px;
}

.product-label:nth-child(2) {
  top: 48px;
}

.ratings {
  color: #f9bd22;
  font-size: 14px;
}

.ratings span {
  margin-right: 3px;
}

.price-box {
  font-size: 15px;
  line-height: 1;
}

.price-regular {
  font-family: var(--primary-font);
  font-size: 18px;
  color: var(--them-color);
  font-weight: 500;
}

.price-old {
  font-family: var(--primary-font);
  font-size: 15px;
  color: #999;
  padding-left: 5px;
  font-weight: 300;
}

/*------- product item end -------*/
/*-------- product list item start --------*/
.product-list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767.98px) {
  .product-list-item {
    display: block !important;
  }
}

.product-list-item .product-thumb {
  max-width: 30%;
  -webkit-flex-basis: 30%;
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  height: 100%;
}

@media only screen and (max-width: 767.98px) {
  .product-list-item .product-thumb {
    max-width: 100%;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

.product-content-list {
  padding-left: 20px;
  max-width: 70%;
  -webkit-flex-basis: 70%;
  -ms-flex-preferred-size: 70%;
  flex-basis: 70%;
}

@media only screen and (max-width: 767.98px) {
  .product-content-list {
    padding-left: 0;
    max-width: 100%;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-top: 30px;
  }
}

.product-content-list .manufacturer-name {
  padding-bottom: 10px;
}

.product-content-list .ratings {
  padding-bottom: 10px;
}

.product-content-list .product-name {
  padding: 10px 0 12px;
}

.product-content-list .product-name a {
  color: #222222;
  font-weight: 400;
}

.product-content-list .product-name a:hover {
  color: var(--them-color);
}

.product-content-list p {
  padding-top: 15px;
  margin-top: 22px;
  border-top: 1px solid #efefef;
}

/*-------- product list item end --------*/
/*------ group list item start ------*/
@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
  .group-product-banner {
    margin-bottom: 80px;
  }
}

.group-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.group-item-thumb {
  max-width: 80px;
  -webkit-flex-basis: 80px;
  -ms-flex-preferred-size: 80px;
  flex-basis: 80px;
}

.group-item-desc {
  position: relative;
  padding-left: 10px;
  max-width: calc(100% - 80px);
  -webkit-flex-basis: calc(100% - 80px);
  -ms-flex-preferred-size: calc(100% - 80px);
  flex-basis: calc(100% - 80px);
}

.group-item-desc .group-product-name {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  text-transform: capitalize;
  padding-bottom: 18px;
}

.group-item-desc .group-product-name a {
  color: #222222;
}

.group-item-desc .group-product-name a:hover {
  color: var(--them-color);
  text-decoration: underline;
}

/*  ==== modern group item start === */
.modern-group-item {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: transparent;
  margin-bottom: 5px;
  height: 120px;
}

.modern-group-item:hover {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.modern-group-item .group-item-thumb {
  max-width: 80px;
  flex-basis: 80px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modern-group-item .group-item-thumb img {
  width: 100%;
  transition: transform 0.5s ease;
}

.modern-group-item:hover .group-item-thumb img {
  transform: scale(1.1);
}

.modern-group-item .group-item-desc {
  padding-left: 15px;
  flex: 1;
}

.modern-group-item .group-product-name {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.4;
}

.modern-group-item .group-product-name a {
  color: #333;
  transition: color 0.3s ease;
}

.modern-group-item:hover .group-product-name a {
  color: var(--them-color);
}

.modern-group-item .price-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modern-group-item .price-regular {
  font-size: 16px;
  font-weight: 600;
  color: var(--them-color);
}

.modern-group-item .price-old {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}

/*  ==== modern group item end === */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .categories-group-wrapper {
    margin-bottom: 78px;
  }
}

@media only screen and (max-width: 767.98px) {
  .categories-group-wrapper {
    margin-bottom: 60px;
  }
}

.row [class*=col-]:last-child .categories-group-wrapper {
  margin-bottom: 0;
}

.group-list-item-wrapper .slick-slider .slick-slide>div {
  margin-bottom: 20px;
}

.group-list-item-wrapper .slick-slider .slick-slide>div:last-child {
  margin-bottom: 0;
}

/*------ group list item end ------*/
/*----- testimonial area start -----*/
.testimonial-thumb-wrapper {
  max-width: 290px;
  margin: auto;
}

.testimonial-thumb {
  cursor: pointer;
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  width: auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.slick-slide.slick-current .testimonial-thumb {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.testimonial-content-wrapper {
  max-width: 910px;
  margin: auto;
  margin-top: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-content-wrapper {
    max-width: 750px;
  }
}

.testimonial-content {
  padding: 0 15px;
  text-align: center;
}

.testimonial-content p {
  font-size: 15px;
}

.testimonial-content .ratings {
  margin-top: 30px;
  margin-bottom: 5px;
}

.testimonial-author {
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
}

/*----- testimonial area end -----*/
/*----- breadcrumb style css start -----*/
.breadcrumb-area {
  background-color: #f5f5f5;
}

.breadcrumb-wrap {
  padding: 24px 0;
  text-align: center;
}

.breadcrumb-wrap .breadcrumb {
  background: transparent;
  margin-bottom: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item a {
  color: #222222;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item a:hover {
  color: var(--them-color);
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item:before {
  color: #7e7e7e;
  content: "/";
  font-size: 12px;
  margin: 0 5px;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item:first-child::before {
  display: none;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item.active {
  color: var(--them-color);
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}

/*----- breadcrumb style css end -----*/
/*----- shop Sidebar start -----*/
.sidebar-wrapper .sidebar-single:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sidebar-wrapper {
    margin-top: 80px;
  }
}

@media only screen and (max-width: 767.98px) {
  .sidebar-wrapper {
    margin-top: 62px;
  }
}

.sidebar-single {
  margin-bottom: 35px;
}

.sidebar-single .sidebar-title {
  position: relative;
  line-height: 1;
  margin-top: -3px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.sidebar-single .sidebar-title:before {
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  content: " ";
  position: absolute;
  background-color: #efefef;
}

/*------ pricing filter slider start ------*/
.price-range-wrap {
  padding-top: 8px;
}

.price-range-wrap .price-range {
  border-radius: 0;
  margin-right: 13px;
  margin-bottom: 20px;
}

.price-range-wrap .price-range.ui-widget-content {
  border: none;
  background: #eeeeee;
  height: 6px;
  border-radius: 20px;
}

.price-range-wrap .price-range.ui-widget-content .ui-slider-range {
  background-color: var(--them-color);
  border-radius: 0;
}

.price-range-wrap .price-range.ui-widget-content .ui-slider-handle {
  border: none;
  background-color: #fff;
  height: 12px;
  width: 12px;
  outline: none;
  cursor: ew-resize;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.6);
}

.price-range-wrap .price-range.ui-widget-content .ui-slider-handle:before {
  top: 50%;
  left: 50%;
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  background-color: var(--them-color);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.price-range-wrap .range-slider {
  color: #222222;
  margin-top: 30px;
}

.price-range-wrap .range-slider .price-input label {
  color: #222222;
  margin-bottom: 0;
}

.price-range-wrap .range-slider .price-input input {
  color: #555555;
  border: none;
  outline: none;
  pointer-events: none;
}

.price-range-wrap .range-slider button.filter-btn {
  border: none;
  color: #222222;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  text-transform: uppercase;
  padding: 4px 15px;
  border-radius: 3px;
  background-color: #ebebeb;
}

.price-range-wrap .range-slider button.filter-btn:hover {
  color: #fff;
  background-color: var(--them-color);
}

/*------ pricing filter slider end ------*/
.categories-list li {
  color: #555555;
  margin-bottom: 20px;
  text-transform: capitalize;
}

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

.categories-list li:hover {
  color: var(--them-color);
}

/*------ shop categories area start ------*/
.shop-categories {
  margin-top: -4px;
}

.shop-categories li a {
  color: #555555;
  display: block;
  line-height: 1;
  padding: 10px 0;
  text-transform: capitalize;
}

.shop-categories li:first-child a {
  padding-top: 0;
}

.shop-categories li:last-child a {
  padding-bottom: 0;
}

.shop-categories li:hover a {
  color: var(--them-color);
}

/*------ shop categories area end ------*/
/*----- shop Sidebar end -----*/
/*------ pagination area style start ------*/
.paginatoin-area {
  margin-top: 30px;
  padding: 20px;
}

.paginatoin-area .pagination-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.paginatoin-area .pagination-box li {
  margin-right: 5px;
  display: inline-block;
}

.paginatoin-area .pagination-box li:last-child {
  margin-right: 0;
}

.paginatoin-area .pagination-box li a {
  color: #222222;
  height: 36px;
  width: 36px;
  font-size: 14px;
  display: inline-block;
  text-align: center;
  line-height: 36px;
  background-color: #f5f5f5;
  border-radius: 50%;
}

.paginatoin-area .pagination-box li a i {
  font-size: 30px;
  line-height: 36px;
}

.paginatoin-area .pagination-box li a:hover {
  color: #fff;
  border-color: var(--them-color);
  background-color: var(--them-color);
}

.paginatoin-area .pagination-box li.active a {
  color: #fff;
  background-color: var(--them-color);
}

/*------ pagination area style end ------*/
/*------- blog item start -------*/
.blog-post-item:hover .blog-thumb img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 0.7;
}

.blog-thumb {
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
}

.blog-content {
  padding-top: 15px;
}

.blog-title {
  line-height: 1.3;
  text-transform: capitalize;
}

.blog-title a {
  color: #222222;
  display: block;
}

.blog-title a:hover {
  color: var(--them-color);
}

.blog-meta {
  padding-bottom: 15px;
}

.blog-meta p {
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
  color: #777;
}

.blog-meta p a {
  color: var(--them-color);
}

/*------- blog item end -------*/
/*------ blog list item start ------*/
.blog-list-inner .blog-post-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767.98px) {
  .blog-list-inner .blog-post-item {
    display: block;
  }
}

.blog-list-inner .blog-post-item .blog-thumb {
  width: 40%;
}

@media only screen and (max-width: 767.98px) {
  .blog-list-inner .blog-post-item .blog-thumb {
    width: 100%;
  }
}

.blog-list-inner .blog-post-item .blog-content {
  padding-top: 0;
  padding-left: 20px;
  width: 60%;
}

@media only screen and (max-width: 767.98px) {
  .blog-list-inner .blog-post-item .blog-content {
    width: 100%;
    padding-left: 0;
    padding-top: 30px;
  }
}

.blog-list-inner .blog-post-item .blog-content .blog-title {
  margin-top: -5px;
}

.blog-list-inner .blog-post-item .blog-content .blog-meta {
  padding-top: 15px;
}

.blog-list-inner .blog-post-item .blog-content .blog-read-more {
  color: #222222;
  display: inline-block;
  margin-top: 10px;
}

.blog-list-inner .blog-post-item .blog-content .blog-read-more:hover {
  color: var(--them-color);
  text-decoration: underline;
}

/*------ blog list item end ------*/
/*----- blog sidebar start -------*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-sidebar-wrapper {
    margin-bottom: -5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-sidebar-wrapper {
    margin-top: 77px;
    margin-bottom: -5px;
  }
}

@media only screen and (max-width: 767.98px) {
  .blog-sidebar-wrapper {
    margin-top: 60px;
    margin-bottom: -5px;
  }
}

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

.blog-sidebar {
  margin-bottom: 30px;
}

.blog-sidebar .title {
  line-height: 1;
  margin-top: -2px;
  margin-bottom: 40px;
  position: relative;
  text-transform: capitalize;
}

.blog-sidebar .title:before {
  width: 100%;
  height: 1px;
  bottom: -10px;
  left: 0;
  background-color: #efefef;
  content: "";
  position: absolute;
}

.blog-sidebar .search-field {
  width: calc(100% - 50px);
  border: 1px solid #ccc;
  padding: 0 10px;
  color: #555555;
  font-size: 14px;
  height: 50px;
  float: left;
  text-transform: capitalize;
}

.blog-sidebar .search-btn {
  width: 50px;
  height: 50px;
  margin-left: -4px;
  text-align: center;
  cursor: pointer;
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.blog-sidebar .search-btn i {
  font-size: 20px;
  line-height: 50px;
  color: #222222;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.blog-sidebar .search-btn:hover {
  background-color: var(--them-color);
  border-color: var(--them-color);
}

.blog-sidebar .search-btn:hover i {
  color: #fff;
}

.blog-sidebar .blog-archive {
  margin-top: -10px;
}

.blog-sidebar .blog-archive li a {
  color: #555555;
  font-size: 14px;
  line-height: 1;
  text-transform: capitalize;
  padding: 13px 0;
  display: inline-block;
}

.blog-sidebar .blog-archive li a:hover {
  color: var(--them-color);
}

.blog-sidebar .blog-archive li:last-child a {
  padding-bottom: 0;
}

.blog-sidebar .blog-archive li:first-child a {
  padding-top: 0;
}

.blog-sidebar .blog-tags li {
  display: inline-block;
  margin-bottom: 5px;
}

.blog-sidebar .blog-tags li a {
  color: #222222;
  font-size: 14px;
  border: 1px solid #ccc;
  padding: 6px 15px 4px;
  display: inline-block;
  text-transform: capitalize;
}

.blog-sidebar .blog-tags li a:hover {
  color: #fff;
  background-color: var(--them-color);
  border-color: var(--them-color);
}

.blog-category {
  margin-top: -10px;
}

.recent-post .recent-post-item:last-child {
  margin-bottom: 0;
}

.recent-post-item {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.recent-post-item .product-thumb {
  max-width: 70px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 70px;
  -ms-flex: 1 0 70px;
  flex: 1 0 70px;
}

.recent-post-item .recent-post-description {
  padding-left: 10px;
}

.recent-post-item .recent-post-description h6 {
  font-size: 14px;
  padding-bottom: 5px;
  text-transform: capitalize;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .recent-post-item .recent-post-description h6 {
    font-size: 13px;
    padding-bottom: 5px;
  }
}

.recent-post-item .recent-post-description h6 a {
  color: #222222;
}

.recent-post-item .recent-post-description h6 a:hover {
  color: var(--them-color);
}

.recent-post-item .recent-post-description p {
  text-transform: capitalize;
}

/*----- blog sidebar end -------*/
.entry-summary {
  padding-top: 25px;
}

blockquote {
  border-left: 5px solid var(--them-color);
  margin: 25px 32px 25px 30px;
  background-color: #f8f8f8;
  padding: 15px;
}

.blog-details-post .blog-content .blog-title {
  padding-top: 10px;
}

@media only screen and (max-width: 767.98px) {
  .blog-details-post .blog-content .blog-title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 479.98px) {
  .blog-details-post .blog-content .blog-title {
    font-size: 18px;
  }
}

.blog-details-post .blog-content .blog-meta {
  padding-top: 15px;
  padding-bottom: 0;
}

.blog-details-post:hover .blog-thumb img {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

/*------- blog main content wrapper start --------*/
.blog-post-item .tag-line {
  padding: 10px 0;
  margin-top: 20px;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}

.blog-post-item .tag-line h6 {
  font-size: 14px;
  display: inline-block;
  padding-right: 5px;
}

.blog-post-item .tag-line a {
  font-size: 13px;
  color: #222222;
}

.blog-post-item .tag-line a:hover {
  color: var(--them-color);
}

.blog-share-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
  .blog-share-link {
    padding-top: 15px;
  }
}

.blog-share-link h6 {
  font-size: 14px;
  padding-right: 15px;
}

.blog-share-link .blog-social-icon a {
  width: 36px;
  height: 36px;
  font-size: 15px;
  line-height: 36px;
  text-align: center;
  display: inline-block;
  color: #fff;
  border-radius: 50%;
  margin-right: 5px;
}

.blog-share-link .blog-social-icon a.facebook {
  background-color: #3B5999;
}

.blog-share-link .blog-social-icon a.twitter {
  background-color: #1DA1F2;
}

.blog-share-link .blog-social-icon a.pinterest {
  background-color: #CB2028;
}

.blog-share-link .blog-social-icon a.google {
  background-color: #fe6d4c;
}

.blog-share-link .blog-social-icon a:hover.facebook {
  background-color: #2d4474;
}

.blog-share-link .blog-social-icon a:hover.twitter {
  background-color: #0c85d0;
}

.blog-share-link .blog-social-icon a:hover.pinterest {
  background-color: #9f191f;
}

.blog-share-link .blog-social-icon a:hover.google {
  background-color: #fe4419;
}

@media only screen and (max-width: 479.98px) {
  .blog-share-link .blog-social-icon a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 13px;
    margin-right: 0;
  }
}

/*--- blog main content wrapper end ---*/
/*--- blog comment section start ---*/
.comment-section {
  margin-top: -3px;
}

.comment-section h5 {
  line-height: 1;
  padding-bottom: 15px;
}

.comment-section ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px;
  margin-bottom: 30px;
  border: 1px solid #efefef;
}

.comment-section ul li:last-child {
  margin-bottom: 5px;
}

@media only screen and (max-width: 479.98px) {
  .comment-section ul li {
    display: block;
  }
}

.comment-section ul li .author-avatar {
  -webkit-flex-basis: 66px;
  -ms-flex-preferred-size: 66px;
  flex-basis: 66px;
  max-height: 62px;
  margin-right: 10px;
}

@media only screen and (max-width: 479.98px) {
  .comment-section ul li .author-avatar {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 66px;
    height: 62px;
  }
}

.comment-section ul li.comment-children {
  margin-left: 40px;
}

@media only screen and (max-width: 479.98px) {
  .comment-section ul li.comment-children {
    margin-left: 20px;
  }
}

.comment-section ul li .comment-body {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.comment-section ul li .comment-body h5 {
  font-size: 14px;
  padding-bottom: 5px;
}

.comment-section ul li .comment-body .comment-post-date {
  color: #555555;
  padding-bottom: 10px;
}

.comment-section ul li .comment-body .reply-btn {
  float: right;
}

.comment-section ul li .comment-body .reply-btn a {
  color: #222222;
  font-size: 12px;
  display: inline-block;
  padding: 4px 15px;
  border-radius: 20px;
  text-transform: capitalize;
  border: 1px solid #efefef;
}

.comment-section ul li .comment-body .reply-btn a:hover {
  color: #fff !important;
  border-color: var(--them-color);
  background-color: var(--them-color);
}

/*--- blog comment section end ---*/
/*------ blog comment box start -----*/
.blog-comment-wrapper {
  margin-top: -10px;
}

.blog-comment-wrapper h3 {
  color: #222222;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  padding-bottom: 15px;
  text-transform: uppercase;
  border-bottom: 1px solid #f0f0f0;
}

.blog-comment-wrapper p {
  margin-bottom: 10px;
  padding-top: 10px;
}

.blog-comment-wrapper .comment-post-box label {
  color: #222222;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
  text-transform: capitalize;
}

.blog-comment-wrapper .comment-post-box .coment-field {
  background: #f8f8f8;
  border: none;
  color: #555555;
  padding: 8px 10px;
  width: 100%;
}

@media only screen and (max-width: 767.98px) {
  .blog-comment-wrapper .comment-post-box .coment-field {
    margin-bottom: 20px;
  }
}

.blog-comment-wrapper .comment-post-box textarea {
  height: 130px;
  margin-bottom: 20px;
  padding: 10px;
  width: 100%;
  background: #f8f8f8;
  border: none;
}

.blog-comment-wrapper .comment-post-box .coment-btn {
  margin-top: 30px;
}

@media only screen and (max-width: 767.98px) {
  .blog-comment-wrapper .comment-post-box .coment-btn {
    margin-top: 10px;
  }
}

/*------- blog comment box end --------*/
/*------- about us area start -------*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-thumb {
    text-align: center;
  }
}

@media only screen and (max-width: 767.98px) {
  .about-thumb {
    text-align: center;
  }

  .about-thumb img {
    width: 100%;
  }
}

.about-title {
  font-size: 48px;
  color: #d1d1d1;
  display: block;
  line-height: 1.1;
  margin-bottom: 38px;
}

@media only screen and (max-width: 767.98px) {
  .about-title {
    font-size: 26px;
    color: #222222;
    margin-bottom: 25px;
  }
}

.about-sub-title {
  line-height: 1.5;
  padding-bottom: 20px;
}

@media only screen and (max-width: 767.98px) {
  .about-sub-title {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
  .about-content {
    text-align: center;
    padding: 52px 30px 0;
    margin-bottom: -6px;
  }
}

@media only screen and (max-width: 479.98px) {
  .about-content {
    padding: 52px 0 0 0;
  }
}

.about-content p {
  font-size: 15px;
  line-height: 1.8;
  padding-bottom: 12px;
}

.about-content p:last-child {
  padding-bottom: 0;
}

/*------- about us area end -------*/
/*-------- choosing area start --------*/
.choosing-area {
  margin-bottom: -4px;
}

@media only screen and (max-width: 767.98px) {
  .single-choose-item {
    padding: 0 20px;
  }
}

.single-choose-item i {
  color: #969ca7;
  font-size: 44px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.single-choose-item h4 {
  color: #222222;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 0 10px;
  text-transform: capitalize;
}

.single-choose-item:hover i {
  color: var(--them-color);
}

/*-------- choosing area end --------*/
/*------- team area start -------*/
.team-member {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.team-member .team-thumb {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.team-member .team-thumb img {
  width: 100%;
}

.team-member .team-thumb .team-social {
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  position: absolute;
  background-color: #fff;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
}

.team-member .team-thumb .team-social a {
  color: #222222;
  width: 30px;
  height: 30px;
  font-size: 14px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  background-color: #f5f5f5;
  border-radius: 5px;
  margin-right: 5px;
}

.team-member .team-thumb .team-social a:hover {
  color: #fff;
  background-color: var(--them-color);
  border-color: var(--them-color);
}

.team-member .team-content .team-member-name {
  padding-top: 15px;
}

.team-member .team-content p {
  font-size: 14px;
  line-height: 1;
  padding-top: 5px;
  color: var(--them-color);
}

.team-member:hover .team-social {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.team-member:hover .team-thumb img {
  opacity: 0.5;
}

/*------- team area end -------*/
/*------ shop page style start ------*/
.shop-top-bar {
  margin-bottom: 30px;
}

.top-bar-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 767.98px) {
  .top-bar-left {
    padding-top: 15px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.top-bar-left .product-view-mode {
  margin-right: 60px;
}

@media only screen and (max-width: 479.98px) {
  .top-bar-left .product-view-mode {
    margin-right: 0;
  }
}

.top-bar-left .product-view-mode a {
  color: #b6b6b6;
  display: inline-block;
  text-align: center;
  margin-right: 10px;
}

.top-bar-left .product-view-mode a i {
  font-size: 20px;
  margin-top: 6px;
}

.top-bar-left .product-view-mode a:hover {
  color: var(--them-color);
}

.top-bar-left .product-view-mode a.active {
  color: var(--them-color);
}

.top-bar-left .product-amount p {
  color: #777;
  font-size: 14px;
  text-transform: capitalize;
}

.top-bar-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media only screen and (max-width: 767.98px) {
  .top-bar-right {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.top-bar-right .product-short {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-bar-right .product-short p {
  margin-right: 10px;
}

.nice-select {
  height: 36px;
  line-height: 34px;
  width: 200px;
  padding: 0 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .nice-select {
    width: 170px;
  }
}

@media only screen and (max-width: 479.98px) {
  .nice-select {
    width: 190px;
  }
}

.nice-select.open {
  border-color: var(--them-color);
}

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

.nice-select .option {
  font-size: 13px;
  line-height: 34px;
  min-height: 34px;
  text-transform: capitalize;
}

.nice-select:after {
  height: 6px;
  width: 6px;
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
}

/*----- shop main wrapper end -----*/
/*----- product change view start -----*/
.shop-product-wrap.list-view .product-item {
  display: none;
}

.shop-product-wrap.grid-view .product-item {
  display: block;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  padding: 0;
}

.shop-product-wrap.grid-view .product-list-item {
  display: none !important;
}

.shop-product-wrap.list-view .product-list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.shop-product-wrap.row.list-view .col-md-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.shop-product-wrap [class*=col-] {
  margin-bottom: 30px;
}

/*----- product change view end -----*/
/*------ shop page style start ------*/
/*----- product details slider start ----*/
.pro-large-img {
  position: relative;
  cursor: pointer;
}

.pro-large-img img {
  width: 100%;
  height: 400px;
  /* object-fit: cover; */
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.pro-nav-thumb {
  cursor: pointer;
}

.pro-nav {
  margin-top: 20px;
}

/*----- product details slider end ----*/
/*----- product details content start ----*/
.option-title {
  line-height: 1;
  font-weight: 400;
  margin-right: 10px;
  text-transform: capitalize;
}

.product-details-des .product-name {
  font-weight: 400;
  padding-top: 5px;
  padding-bottom: 5px;
}

@media only screen and (max-width: 575.98px) {
  .product-details-des .product-name {
    font-size: 17px;
  }
}

.product-details-des .pro-review {
  padding-left: 10px;
}

.product-details-des .pro-review span {
  font-size: 14px;
  line-height: 1;
  color: #555555;
}

.product-details-des .price-box {
  padding-top: 10px;
  padding-bottom: 10px;
}

.product-details-des .customer-rev {
  padding-top: 10px;
}

.product-details-des .customer-rev a {
  color: #222222;
  font-size: 13px;
  text-transform: capitalize;
}

.product-details-des .customer-rev a:hover {
  color: var(--them-color);
}

.product-details-des .offer-text {
  font-weight: 400;
}

.product-details-des .quantity-cart-box {
  margin-bottom: 20px;
}

.product-details-des .quantity {
  margin-right: 15px;
}

.product-details-des .quantity .pro-qty {
  width: 90px;
  height: 40px;
  border: 1px solid #ddd;
  padding: 0 15px;
  border-radius: 40px;
  float: left;
}

.product-details-des .quantity .pro-qty .qtybtn {
  width: 15px;
  display: block;
  float: left;
  line-height: 40px;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
  color: #555555;
}

.product-details-des .quantity .pro-qty input {
  width: 28px;
  float: left;
  border: none;
  height: 40px;
  line-height: 40px;
  padding: 0;
  text-align: center;
  background-color: transparent;
}

.product-details-des .pro-desc {
  margin-bottom: 20px;
}

.product-details-des .availability {
  margin-bottom: 15px;
}

.product-details-des .availability i {
  color: #81ca33;
}

.product-details-des .availability span {
  color: #555555;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  padding-left: 3px;
  text-transform: uppercase;
}

.product-details-des .useful-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.product-details-des .useful-links a {
  font-size: 14px;
  font-weight: 500;
  color: #222222;
  margin-right: 20px;
  text-transform: capitalize;
}

.product-details-des .useful-links a:hover {
  color: var(--them-color);
}

.product-details-des .useful-links a i {
  font-size: 20px;
  padding-right: 5px;
  vertical-align: middle;
}

.product-details-des .like-icon {
  padding-top: 20px;
  border-top: 1px solid #efefef;
}

.product-details-des .like-icon a {
  color: #fff;
  text-align: center;
  display: inline-block;
  font-size: 12px;
  line-height: 22px;
  padding: 0 8px;
  margin-right: 6px;
  border-radius: 3px;
  text-transform: capitalize;
}

@media only screen and (max-width: 479.98px) {
  .product-details-des .like-icon a {
    margin-right: 0;
  }
}

.product-details-des .like-icon a i {
  padding-right: 5px;
}

.product-details-des .like-icon a.facebook {
  background-color: #3B5999;
}

.product-details-des .like-icon a.twitter {
  background-color: #1DA1F2;
}

.product-details-des .like-icon a.pinterest {
  background-color: #CB2028;
}

.product-details-des .like-icon a.google {
  background-color: #fe6d4c;
}

.product-details-des .like-icon a:hover.facebook {
  background-color: #2d4474;
}

.product-details-des .like-icon a:hover.twitter {
  background-color: #0c85d0;
}

.product-details-des .like-icon a:hover.pinterest {
  background-color: #9f191f;
}

.product-details-des .like-icon a:hover.google {
  background-color: #fe4419;
}

.product-details-des .share-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-details-des .share-icon a {
  color: #555555;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  padding: 0 8px;
  margin-right: 5px;
}

@media only screen and (max-width: 479.98px) {
  .product-details-des .share-icon a {
    padding: 0 5px;
  }
}

.product-details-des .share-icon a:hover {
  color: var(--them-color);
}

.product-details-des .color-option {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 18px;
}

.product-details-des .pro-size {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 18px;
}

.product-details-des .pro-size .nice-select {
  width: 100px;
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
}

.product-details-des .group-product-table {
  margin-top: 30px;
  margin-bottom: 20px;
  display: block;
}

.product-details-des .group-product-table.table-bordered {
  border: none;
}

.product-details-des .group-product-table td {
  width: 33.33%;
  padding: 8px;
  vertical-align: middle;
}

.product-details-des .group-product-table td a {
  color: #555555;
  text-transform: capitalize;
}

.product-details-des .group-product-table td a:hover {
  color: var(--them-color);
}

.product-details-des .group-product-table td .pro-qty {
  width: 90px;
  height: 35px;
  border: 1px solid #ddd;
  padding: 0 15px;
  float: left;
}

.product-details-des .group-product-table td .pro-qty .qtybtn {
  width: 15px;
  display: block;
  float: left;
  line-height: 31px;
  cursor: pointer;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #555555;
}

.product-details-des .group-product-table td .pro-qty input {
  width: 28px;
  float: left;
  border: none;
  height: 33px;
  line-height: 33px;
  padding: 0;
  text-align: center;
  background-color: transparent;
}

/*------ countdown style end ------*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-details-des {
    margin-top: 76px;
  }
}

@media only screen and (max-width: 767.98px) {
  .product-details-des {
    margin-top: 58px;
  }
}

.product-details-des.quick-details {
  margin-top: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-details-des.quick-details {
    margin-top: 0;
  }
}

@media only screen and (max-width: 767.98px) {
  .product-details-des.quick-details {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-details-des.quick-details .product-name {
    font-size: 20px;
  }
}

@media only screen and (max-width: 767.98px) {
  .product-details-des.quick-details .product-name {
    font-size: 18px;
  }
}

.product-details-des.box-layout {
  padding-top: 47px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
  .product-details-des.box-layout {
    margin-top: 0;
  }
}

.product-details-des.box-layout p {
  max-width: 80%;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
  .product-details-des.box-layout p {
    max-width: 100%;
    padding: 0 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
  .product-details-des.sidebar-sticky {
    margin-top: 0;
  }
}

.product-details-des.quick-des p {
  padding-top: 0;
}

/*----- product details content end ----*/
/*----- reviews area start -----*/
.product-review-info .nav.review-tab li a {
  color: #fff;
  display: block;
  font-size: 16px;
  line-height: 1;
  text-transform: capitalize;
  padding: 8px 10px;
  border: 1px solid var(--them-color);
  border-bottom: none;
  background-color: var(--them-color);
}

.product-review-info .nav.review-tab li a:hover,
.product-review-info .nav.review-tab li a.active {
  color: #555555;
  background-color: #fff;
  border-color: #ddd;
}

@media only screen and (max-width: 479.98px) {
  .product-review-info .nav.review-tab li a {
    font-size: 14px;
  }
}

.product-review-info .tab-content.reviews-tab {
  border: 1px solid #efefef;
  padding: 15px 20px 20px;
}

.product-review-info .tab-content.reviews-tab .table {
  margin-bottom: 0;
}

.product-review-info .tab-content.reviews-tab .table tr {
  text-transform: capitalize;
}

.product-review-info .tab-content .review-description {
  padding-top: 25px;
  padding-bottom: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-review-info .tab-content .review-description {
    padding: 15px 0;
  }
}

@media only screen and (max-width: 767.98px) {
  .product-review-info .tab-content .review-description {
    display: block;
  }
}

.product-review-info .tab-content .review-description .tab-thumb {
  -webkit-flex-basis: 300px;
  -ms-flex-preferred-size: 300px;
  flex-basis: 300px;
}

@media only screen and (max-width: 767.98px) {
  .product-review-info .tab-content .review-description .tab-thumb {
    -webkit-flex-basis: 220px;
    -ms-flex-preferred-size: 220px;
    flex-basis: 220px;
  }
}

.product-review-info .tab-content .review-description .tab-des {
  padding-left: 40px;
  -webkit-flex-basis: calc(100% - 300px);
  -ms-flex-preferred-size: calc(100% - 300px);
  flex-basis: calc(100% - 300px);
}

@media only screen and (max-width: 767.98px) {
  .product-review-info .tab-content .review-description .tab-des {
    padding-left: 14px;
    -webkit-flex-basis: calc(100% - 220px);
    -ms-flex-preferred-size: calc(100% - 220px);
    flex-basis: calc(100% - 220px);
  }
}

.product-review-info .tab-content .review-description .tab-des h3 {
  color: var(--them-color);
  font-size: 20px;
  font-weight: 22px;
  font-weight: 700;
  text-transform: capitalize;
  padding-bottom: 10px;
}

.product-review-info .tab-content .review-description .tab-des ul li {
  font-size: 13px;
  list-style: inherit;
}

.review-form h5 {
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 20px;
  text-transform: capitalize;
}

@media only screen and (max-width: 575.98px) {
  .review-form h5 {
    font-size: 16px;
  }
}

.total-reviews {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 50px;
}

@media only screen and (max-width: 479.98px) {
  .total-reviews {
    display: block;
  }
}

.total-reviews .rev-avatar {
  -webkit-flex-basis: 60px;
  -ms-flex-preferred-size: 60px;
  flex-basis: 60px;
  max-height: 60px;
}

@media only screen and (max-width: 479.98px) {
  .total-reviews .rev-avatar {
    margin-bottom: 20px;
  }
}

.total-reviews .review-box {
  margin-left: 10px;
  border: 1px solid #efefef;
  padding: 10px;
  -webkit-flex-basis: calc(100% - 70px);
  -ms-flex-preferred-size: calc(100% - 70px);
  flex-basis: calc(100% - 70px);
}

@media only screen and (max-width: 479.98px) {
  .total-reviews .review-box {
    margin-left: 0;
  }
}

.total-reviews .review-box .post-author {
  padding-bottom: 10px;
}

.total-reviews .review-box .post-author p {
  font-size: 12px;
  font-style: italic;
  text-transform: capitalize;
}

.total-reviews .review-box .post-author p span {
  font-size: 13px;
}

.total-reviews .review-box p {
  font-size: 14px;
  font-style: italic;
}

/*----- reviews area end -----*/
/* Checkout Login Coupon Accordion Start */
.checkout-page-wrapper {
  margin-bottom: -8px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
  .checkout-page-wrapper {
    margin-bottom: 0;
  }
}

.checkoutaccordion {
  margin-bottom: 46px;
}

.checkoutaccordion h6 {
  background-color: #f7f7f7;
  border-top: 3px solid var(--them-color);
  font-size: 14px;
  padding: 15px 20px;
  position: relative;
  text-transform: capitalize;
}

.checkoutaccordion h6 span {
  color: var(--them-color);
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  margin-left: 10px;
}

@media only screen and (max-width: 479.98px) {
  .checkoutaccordion h6 span {
    display: block;
    padding-top: 5px;
    margin-left: 0;
  }
}

.checkoutaccordion h6 span:hover {
  color: #222222;
}

@media only screen and (max-width: 479.98px) {
  .checkoutaccordion h6 {
    font-size: 14px;
  }
}

.checkoutaccordion .card {
  border: none;
  padding: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  margin-bottom: 30px;
}

.checkoutaccordion .card:last-child {
  margin-bottom: 0;
}

.checkoutaccordion .card .card-body {
  border: 1px solid #ccc;
  font-size: 14px;
  padding: 20px;
}

.checkoutaccordion .card .card-body .cart-update-option {
  border: none;
  padding: 0;
}

.checkoutaccordion .card .card-body .cart-update-option .apply-coupon-wrapper input {
  padding: 12px 10px;
  background-color: #f7f7f7;
  border: 1px solid #ccc;
  margin-right: 15px;
}

@media only screen and (max-width: 479.98px) {
  .checkoutaccordion .card .card-body .cart-update-option .apply-coupon-wrapper input {
    margin-bottom: 15px;
  }
}

.checkout-box-wrap .custom-control {
  padding-left: 0;
  margin-left: 1.5rem;
}

.checkout-billing-details-wrap .billing-form-wrap {
  margin-top: -20px;
}

.checkout-title {
  border-bottom: 1px solid #efefef;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767.98px) {
  .checkout-title {
    margin-bottom: 26px;
  }
}

.forget-pwd {
  color: var(--them-color);
  font-size: 12px;
  margin-top: -6px;
}

.single-form-row {
  margin-top: 15px;
  display: none;
}

.single-form-row p {
  margin: 0;
  font-size: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .order-summary-details {
    margin-top: 70px;
  }
}

@media only screen and (max-width: 767.98px) {
  .order-summary-details {
    margin-top: 52px;
  }
}

.order-summary-table {
  background-color: #f7f7f7;
  margin-top: 34px;
}

.order-summary-table .table,
.order-summary-table table {
  color: #222222;
  margin-bottom: 0;
  font-size: 15px;
  white-space: nowrap;
}

.order-summary-table .table tr td,
.order-summary-table .table tr th,
.order-summary-table table tr td,
.order-summary-table table tr th {
  font-weight: 400;
  vertical-align: middle;
  padding: 15px 10px;
  border-width: 1px;
}

.order-summary-table .table tr td a,
.order-summary-table .table tr th a,
.order-summary-table table tr td a,
.order-summary-table table tr th a {
  color: #222222;
  font-weight: 400;
}

.order-summary-table .table tr td strong,
.order-summary-table .table tr th strong,
.order-summary-table table tr td strong,
.order-summary-table table tr th strong {
  font-weight: 400;
}

.order-summary-table .shipping-type {
  text-align: left;
}

.order-summary-table .shipping-type li {
  margin-bottom: 5px;
}

.order-summary-table .shipping-type li:last-child {
  margin-bottom: 0;
}

.order-summary-table .table> :not(:last-child)> :last-child>* {
  border-bottom-color: inherit;
}

.order-payment-method {
  background-color: #f7f7f7;
  padding: 40px 20px 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
  .order-payment-method {
    padding: 32px 20px 36px;
  }
}

.single-payment-method {
  margin-bottom: 20px;
}

.single-payment-method:last-child {
  margin-bottom: 0;
}

.single-payment-method:first-child .payment-method-details {
  display: block;
}

.single-payment-method label,
.single-payment-method .custom-control-label {
  font-weight: 700;
}

.single-payment-method .paypal-card {
  max-width: 150px;
  height: 50px;
  margin-top: 10px;
  display: block;
}

.single-payment-method .payment-method-details {
  background-color: #f1f1f1;
  color: #222222;
  font-weight: 400;
  font-size: 13px;
  padding: 10px;
  position: relative;
  margin-top: 20px;
  display: none;
}

.single-payment-method .payment-method-details:after {
  content: "";
  position: absolute;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #f1f1f1;
  bottom: 100%;
}

.single-payment-method .payment-method-details * {
  margin: 0;
}

.summary-footer-area .btn-brand {
  margin-top: 40px;
}

/*------- input box style css start -------*/
.single-input-item {
  margin-top: 20px;
}

.single-input-item label {
  color: #222222;
  text-transform: capitalize;
  font-size: 14px;
}

.single-input-item label.required:after {
  content: "*";
  color: red;
  font-size: 14px;
  margin-left: 3px;
  margin-top: 5px;
}

.single-input-item input,
.single-input-item textarea {
  color: #555555;
  border: 1px solid #ccc;
  padding: 12px 10px;
  width: 100%;
  font-size: 14px;
  background: #f7f7f7;
}

.single-input-item input:active,
.single-input-item input:focus,
.single-input-item textarea:active,
.single-input-item textarea:focus {
  border-color: var(--them-color);
  background-color: #fff;
}

.single-input-item .nice-select {
  width: 100%;
  border-radius: 0;
  height: 48px;
  border-color: #ccc;
  background-color: #f7f7f7;
}

.single-input-item .nice-select .current {
  color: #555555;
}

.single-input-item .nice-select .list {
  max-height: 200px;
  overflow: auto;
  width: 100%;
}

/*------- input box style css end -------*/
/*--------- Cart Page Wrapper Start ---------*/
.cart-table .table {
  margin: 0;
  white-space: nowrap;
}

.cart-table .table thead {
  background-color: var(--them-color);
}

.cart-table .table thead tr th {
  border-color: var(--them-color);
  border-bottom: 0 solid transparent;
  color: var(--black-color);
  font-size: 14px;
  font-weight: 700;
  padding: 15px 20px;
  text-align: center;
  text-transform: capitalize;
}

.cart-table .table tbody tr td {
  border-color: #ccc;
  text-align: center;
  padding: 10px 20px;
  vertical-align: middle;
  font-weight: 500;
  color: #222222;
}

.cart-table .table tbody tr td a {
  color: #222222;
  font-weight: 400;
  text-transform: capitalize;
}

.cart-table .table tbody tr td a:hover {
  color: var(--them-color);
}

.cart-table .table tbody tr td a.btn {
  color: #fff;
}

.cart-table .table tbody tr td a.btn:hover {
  color: #fff;
}

.cart-table .table tbody tr td a.check-btn {
  color: #fff;
}

.cart-table .table tr .pro-thumbnail,
.cart-table .table tr .pro-price,
.cart-table .table tr .pro-quantity,
.cart-table .table tr .pro-subtotal,
.cart-table .table tr .pro-remove {
  width: 140px;
}

.cart-table .table tr .pro-qty {
  width: 90px;
  height: 40px;
  border: 1px solid #ddd;
  padding: 0 15px;
  float: left;
}

.cart-table .table tr .pro-qty .qtybtn {
  width: 15px;
  display: block;
  float: left;
  line-height: 38px;
  cursor: pointer;
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  color: #555555;
}

.cart-table .table tr .pro-qty input {
  width: 28px;
  float: left;
  border: none;
  height: 40px;
  line-height: 34px;
  padding: 0;
  text-align: center;
  background-color: transparent;
}

.cart-update-option {
  border: 1px solid #ccc;
  margin-top: 15px;
  padding: 15px 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (min-width: 1200px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .cart-update-option {
    margin-top: 0;
    border-top: 0 solid transparent;
  }
}

.cart-update-option .apply-coupon-wrapper {
  width: 55%;
}

@media only screen and (max-width: 767.98px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .cart-update-option .apply-coupon-wrapper {
    width: auto;
  }
}

.cart-update-option .apply-coupon-wrapper form {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  white-space: nowrap;
}

.cart-update-option .apply-coupon-wrapper form input {
  border: 1px solid #ccc;
  font-size: 14px;
  padding: 9px 10px;
  outline: none;
  margin-right: 15px;
  width: 100%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.cart-update-option .apply-coupon-wrapper form input:focus,
.cart-update-option .apply-coupon-wrapper form input:active {
  border-color: var(--them-color);
}

@media only screen and (max-width: 767.98px) {
  .cart-update-option .apply-coupon-wrapper button {
    display: block;
    width: 100%;
    margin-top: 15px;
    border-radius: 0;
  }
}

@media only screen and (max-width: 767.98px) {
  .cart-update-option .cart-update {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 767.98px) {
  .cart-update-option .cart-update .btn {
    width: 100%;
  }
}

.cart-calculator-wrapper {
  margin-top: 30px;
  background-color: #f8f8f8;
}

.cart-calculator-wrapper h6 {
  padding: 20px 15px 18px;
  margin-bottom: 0;
}

.cart-calculator-wrapper .cart-calculate-items {
  font-weight: 500;
}

.cart-calculator-wrapper .cart-calculate-items .table {
  margin-bottom: 0;
}

.cart-calculator-wrapper .cart-calculate-items .table tr td {
  color: #222222;
  padding: 15px 20px;
}

.cart-calculator-wrapper .cart-calculate-items .table tr td:nth-child(2) {
  color: #222222;
  text-align: right;
}

.cart-calculator-wrapper .cart-calculate-items .table tr td.total-amount {
  color: var(--them-color);
  font-weight: 700;
}

.cart-calculator-wrapper a {
  border-radius: 0;
  text-align: center;
}

/*--------- Cart Page Wrapper end ---------*/
/*------ Start Compare Page Wrapper -----*/
.compare-table .table tbody tr td {
  text-align: center;
  padding: 20px 20px;
  vertical-align: middle;
  border-color: #ccc;
}

.compare-table .table tbody tr td.first-column {
  min-width: 175px;
  font-size: 15px;
  font-weight: 500;
  color: #222222;
  margin: 0;
}

@media only screen and (max-width: 767.98px) {
  .compare-table .table tbody tr td.first-column {
    min-width: 115px;
  }
}

.compare-table .table tbody tr td.product-image-title {
  min-width: 310px;
  vertical-align: bottom;
}

@media only screen and (max-width: 767.98px) {
  .compare-table .table tbody tr td.product-image-title {
    min-width: 220px;
  }
}

.compare-table .table tbody tr td.product-image-title .image {
  clear: both;
  width: 100%;
  margin-bottom: 15px;
  display: block;
}

.compare-table .table tbody tr td.product-image-title .category {
  float: left;
  clear: both;
  color: var(--them-color);
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.compare-table .table tbody tr td.product-image-title .title {
  float: left;
  clear: both;
  font-size: 16px;
  color: #222222;
  font-weight: 500;
  text-transform: capitalize;
}

.compare-table .table tbody tr td.product-image-title .title:hover {
  color: var(--them-color);
}

.compare-table .table tbody tr td.pro-desc p {
  text-align: left;
  margin: 0;
}

.compare-table .table tbody tr td.pro-price,
.compare-table .table tbody tr td.pro-color,
.compare-table .table tbody tr td.pro-stock {
  font-size: 14px;
  font-weight: 400;
}

.compare-table .table tbody tr td.pro-remove button {
  border: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.compare-table .table tbody tr td.pro-remove button:hover {
  color: #e74c3c;
}

.compare-table .table tbody tr td.pro-remove button i {
  font-size: 20px;
}

.compare-table .table tbody tr td.pro-ratting i {
  color: var(--them-color);
}

/*------ end Compare Page Wrapper -----*/
/*-------- Start My Account Page Wrapper --------*/
.myaccount-tab-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.myaccount-tab-menu a {
  border: 1px solid #efefef;
  border-bottom: none;
  color: #222222;
  font-weight: 400;
  font-size: 15px;
  display: block;
  padding: 10px 15px;
  text-transform: capitalize;
}

.myaccount-tab-menu a:last-child {
  border-bottom: 1px solid #efefef;
}

.myaccount-tab-menu a:hover,
.myaccount-tab-menu a.active {
  background-color: var(--them-color);
  border-color: var(--them-color);
  color: #fff;
}

.myaccount-tab-menu a i.fa {
  font-size: 14px;
  text-align: center;
  width: 25px;
}

@media only screen and (max-width: 767.98px) {
  #myaccountContent {
    margin-top: 30px;
  }
}

.myaccount-content {
  border: 1px solid #eeeeee;
  padding: 30px;
}

@media only screen and (max-width: 575.98px) {
  .myaccount-content {
    padding: 20px 15px;
  }
}

.myaccount-content form {
  margin-top: -20px;
}

.myaccount-content h5 {
  border-bottom: 1px dashed #ccc;
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.myaccount-content .welcome a {
  color: #222222;
}

.myaccount-content .welcome a:hover {
  color: var(--them-color);
}

.myaccount-content .welcome strong {
  font-weight: 500;
  color: var(--them-color);
}

.myaccount-content fieldset {
  margin-top: 20px;
}

.myaccount-content fieldset legend {
  color: #222222;
  font-size: 20px;
  margin-top: 20px;
  font-weight: 400;
  border-bottom: 1px dashed #ccc;
}

.myaccount-table {
  white-space: nowrap;
  font-size: 14px;
}

.myaccount-table table th,
.myaccount-table .table th {
  color: #222222;
  padding: 10px;
  font-weight: 400;
  background-color: #f8f8f8;
  border-color: #ccc;
  border-bottom: 0;
}

.myaccount-table table td,
.myaccount-table .table td {
  padding: 10px;
  vertical-align: middle;
  border-color: #ccc;
}

.saved-message {
  background-color: #f4f5f7;
  border-top: 3px solid var(--them-color);
  border-radius: 5px 5px 0 0;
  font-weight: 400;
  font-size: 15px;
  color: #555555;
  padding: 20px;
}

/*-------- Start My Account Page Wrapper --------*/
/*------ Start Login & Register Page ------*/
.login-reg-form-wrap {
  background-color: #fff;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  padding: 23px 30px 30px;
}

@media only screen and (max-width: 575.98px) {
  .login-reg-form-wrap {
    padding: 23px 15px 30px;
  }
}

.login-reg-form-wrap form .create-account {
  margin-top: 25px;
}

.login-reg-form-wrap .login-reg-form-meta a {
  color: var(--them-color);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sign-up-form {
    margin-top: 80px;
  }
}

@media only screen and (max-width: 767.98px) {
  .sign-up-form {
    margin-top: 62px;
  }
}

/*------ end Login & Register Page ------*/
/*----- Google map area start -----*/
#google-map {
  height: 500px;
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #google-map {
    height: 400px;
  }
}

@media only screen and (max-width: 767.98px) {
  #google-map {
    height: 350px;
  }
}

/*----- Google map area end -----*/
/*------ contact form area start -------*/
.contact-area {
  margin-top: -4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
  .contact-area {
    margin-bottom: -5px;
  }
}

.contact-message h2 {
  color: #222222;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 28px;
  text-transform: capitalize;
}

@media only screen and (max-width: 575.98px) {
  .contact-message h2 {
    font-size: 18px;
    padding-bottom: 15px;
  }
}

.contact-message form input,
.contact-message form textarea {
  width: 100%;
  border: none;
  padding: 10px 10px;
  border-bottom: 3px solid transparent;
  background-color: #f7f7f7;
  margin-bottom: 30px;
}

.contact-message form textarea {
  height: 150px;
}

/*------ contact form area start -------*/
/*------ contact info area start -------*/
.contact-info {
  height: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-info {
    margin-top: 77px;
  }
}

@media only screen and (max-width: 767.98px) {
  .contact-info {
    margin-top: 60px;
  }
}

.contact-info p {
  padding-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-info p {
    padding-bottom: 10px;
  }
}

.contact-info ul li {
  border-bottom: 1px solid #efefef;
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 479.98px) {
  .contact-info ul li {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
}

.contact-info ul li:last-child {
  border-bottom: none;
}

.contact-info ul li i {
  font-size: 18px;
  padding-right: 10px;
}

.contact-info .working-time h6 {
  padding-bottom: 5px;
}

.contact-info .working-time p {
  padding-bottom: 0;
}

.contact-info .working-time p span {
  color: #222222;
  padding-right: 10px;
}

.contact-title {
  line-height: 1;
  padding-bottom: 22px;
}

@media only screen and (max-width: 575.98px) {
  .contact-title {
    font-size: 18px;
    padding-bottom: 8px;
  }
}

/*------ contact info area end -------*/
/*----- footer area start -----*/
.footer-top {
  background-color: var(--black-color);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
  .footer-top [class*=col-] .widget-item {
    margin-bottom: 30px;
  }
}

.footer-top [class*=col-]:last-child .widget-item {
  margin-bottom: 0;
}

.widget-title {
  margin-top: -6px;
  margin-bottom: 23px;
  font-family: var(--mainfont);
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white-color);
}

.widget-title-text {
  font-family: var(--mainfont);
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-text {
  color: var(--gray-color);
  font-size: 16px;
  font-family: var(--primary-font);
}

.footer-bottom-menu ul li {
  margin-left: 20px;
}

.footer-bottom-menu ul li a {
  font-size: 15px;
  font-family: var(--primary-font);
  color: var(--gray-color);
}

.footer-bottom-menu ul li a:hover {
  color: var(--them-color);
}

.contact-block li {
  font-size: 15px;
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}

.contact-block li:last-child {
  margin-bottom: 0;
}

.contact-block li i {
  font-size: 20px;
  padding-right: 8px;
  vertical-align: middle;
  color: var(--them-color);
}

.contact-block li a {
  color: var(--gray-color);
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-block li a:hover {
  color: var(--them-color);
  transform: translateX(8px);
}

/* 
.info-list {
  display: grid;
  grid-template-columns: auto auto;
} */

.info-list li {
  margin-bottom: 12px;
}

.info-list li a {
  font-size: 16px;
  color: var(--gray-color);
  text-transform: capitalize;
  transition: all 0.3s ease;
  display: inline-block;
  font-family: var(--primary-font);
}

.info-list li a:hover {
  color: var(--them-color);
  transform: translateX(8px);
}

.social-link {
  margin-top: 30px;
}

.footer-bottom {
  background-color: #1d1d1d;
}

.social-link a {
  width: 40px;
  height: 40px;
  font-size: 18px;
  line-height: 40px;
  margin-right: 10px;
  color: var(--white-color);
  display: inline-block;
  text-align: center;
  background-color: rgb(255 255 255 / 12%);
  border-radius: 50%;
}

.social-link a:last-child {
  margin-right: 0;
}

.social-link a:hover {
  color: #fff;
  background-color: var(--them-color);
  border-color: var(--them-color);
}

@media only screen and (max-width: 767.98px) {
  .newsletter-wrapper {
    margin-top: 8px;
  }
}

.newsletter-inner {
  position: relative;
  margin-top: 16px;
}

@media only screen and (max-width: 767.98px) {
  .newsletter-inner {
    margin-top: 5px;
  }
}

.newsletter-inner .news-field {
  width: 100%;
  height: 40px;
  border: none;
  padding: 10px 0;
  color: #777777;
  padding-right: 80px;
  background-color: transparent;
  border-bottom: 1px solid #bcbcbc;
}

.newsletter-inner .news-btn {
  top: 0;
  right: 10px;
  line-height: 40px;
  position: absolute;
  font-size: 14px;
  font-weight: 700;
  color: var(--them-color);
}

.newsletter-inner .news-btn:hover {
  color: #222222;
}

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

@media only screen and (max-width: 767.98px) {
  .footer-payment {
    text-align: center;
    margin-top: 30px;
  }
}

.footer-bottom {
  padding: 20px 0;
}

.copyright-text a {
  color: var(--them-color);
}

.copyright-text p {
  color: var(--white-color);
  font-family: var(--primary-font);
}

/*----- footer area end -----*/

.logo img {
  height: 65px;
  width: 150px;
  object-fit: contain;
}

.widget-logo img {
  height: 90px;
  width: 150px;
  object-fit: contain;
}

/*------- Rental House Area Start -------*/
.rental-house-area {
  padding: 80px 0;
  background-color: #fcf8f2;
  position: relative;
}

.rental-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
}

.rental-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.rental-thumb {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.rental-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.rental-item:hover .rental-thumb img {
  transform: scale(1.1);
}

.rental-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding: 20px;
  text-align: center;
}

.rental-item:hover .rental-overlay {
  opacity: 1;
  visibility: visible;
}

.rental-content {
  transform: translateY(20px);
  transition: transform 0.5s ease;
}

.rental-item:hover .rental-content {
  transform: translateY(0);
}

.rental-title {
  color: #fff;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.rental-price {
  color: var(--them-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  display: block;
}

.btn-rental {
  background-color: var(--them-color);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  transition: all 0.3s ease;
  border: 2px solid var(--them-color);
  display: inline-block;
}

.btn-rental:hover {
  background-color: transparent;
  color: var(--them-color);
}

/* Modern Shadow */
.shadow-modern {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Responsive Fixes */
@media only screen and (max-width: 991.98px) {
  .rental-thumb {
    height: 350px;
  }
}

@media only screen and (max-width: 767.98px) {
  .rental-thumb {
    height: 400px;
  }
}

@media only screen and (max-width: 575.98px) {
  .rental-thumb {
    height: 300px;
  }
}

/*------- Rental House Area End -------*/

.mobile-menu-btn

/* From Uiverse.io by Yaya12085 */
#checkbox {
  display: none;
}

.toggle {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  transition-duration: .5s;
}

#bar1 {
  width: 50%;
}

#bar2 {
  width: 50%;
  transition-duration: .8s;
}

#checkbox:checked+.toggle .bars {
  position: absolute;
  transition-duration: .5s;
}

#checkbox:checked+.toggle #bar2 {
  transform: scaleX(0);
  transition-duration: .1s;
}

#checkbox:checked+.toggle #bar1 {
  width: 30px;
  transform: rotate(45deg);
  transition-duration: .5s;
}

#checkbox:checked+.toggle #bar3 {
  width: 30px;
  transform: rotate(-45deg);
  transition-duration: .5s;
}

#checkbox:checked+.toggle {
  transition-duration: .5s;
  transform: rotate(180deg);
}

.offcanva-logo img {
  height: 70px;
}

/*=============================================
=            Premium Banner Wrapper            =
=============================================*/

:root {
  --mainfont: "Marcellus", serif;
  --primary-font: "Montserrat", sans-serif;
  --black-color: #000;
  --white-color: #fff;
  --gray-color: #c3c3c3;
}

/* =========================
   MAIN WRAPPER
========================= */
.banner-wrapper {
  width: 100%;
  overflow: hidden;
}

/* =========================
   LEFT MAIN SLIDER
========================= */
.banner-wrapper .first-slider {
  width: 100%;
  height: 100%;
}

.banner-wrapper .main-swiper {
  width: 100%;
  height: 600px;
}

.banner-wrapper .main-swiper .swiper-slide {
  height: 100%;
}

/* banner */
.banner-wrapper .first-banner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  position: relative;
  color: var(--white-color);
}

/* overlay */
.banner-wrapper .first-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

/* content */
.banner-wrapper .banner-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding: 0 40px 60px;
}

/* heading */
.banner-content h2 {
  font-size: 42px;
  font-family: var(--mainfont);
  margin-bottom: 10px;
  color: var(--white-color);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
}


/* paragraph */
.banner-content p {
  font-family: var(--primary-font);
  margin-bottom: 15px;
  color: var(--white-color);
  font-size: 16px;
}

/* button */
.btn-hero {
  background: linear-gradient(45deg, #ff585f, #772a9a);
  border: none;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* slider images */
.banner-wrapper .banner-slide-1 {
  background: url(../img/banner/slider-brid.jpg) center/cover no-repeat;
}

.banner-wrapper .banner-slide-2 {
  background: url(../img/banner/slider-bri2.jpg) center/cover no-repeat;
}

.banner-wrapper .banner-slide-3 {
  background: url(../img/banner/slider-bri3.jpg) center/cover no-repeat;
}

/* pagination */
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* =========================
   RIGHT SIDE WRAPPER
========================= */
.banner-wrapper .slider-imgbox-wrap {
  width: 100%;
  height: 600px;
  display: flex;
  flex-direction: column;
}

/* =========================
   TOP STATIC BANNER
========================= */
.banner-wrapper .slider-imgbox {
  height: 100%;
}

.banner-wrapper .slider-img {
  height: 100%;
  background: url(../img/banner/slider-imgring.jpg) center/cover no-repeat;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}

/* .banner-wrapper .slider-img:hover {
  transform: scale(1.03);
} */

/* overlay */
.banner-wrapper .slider-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 28%);
}

/* static content */
.banner-wrapper .static-content {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 20px;
  color: var(--white-color);
}

.banner-title {
  font-size: 32px;
  font-family: var(--mainfont);
}

.banner-subtitle {
  font-size: 16px;
  font-family: var(--primary-font);
}

/* =========================
   SECOND SLIDER (BOTTOM)
========================= */
.banner-wrapper .second-slidr {
  height: 50%;
}

.banner-wrapper .secondary-swiper {
  height: 100%;
}

.banner-wrapper .secondary-swiper .swiper-slide {
  height: 100%;
}

/* bottom banners */
.banner-wrapper .second-banner {
  height: 100%;
  overflow: hidden;
  transition: 0.4s;
}

.banner-wrapper .second-banner:hover {
  transform: scale(1.03);
}

/* bottom images */
.banner-wrapper .banner-bottom-1 {
  background: url(../img/banner/second-slider-img.jpg) center/cover no-repeat;
}

.banner-wrapper .banner-bottom-2 {
  background: url(../img/banner/slider-img1.jpg) center/cover no-repeat;
}

/* pagination container */
.banner-wrapper .swiper-pagination {
  position: absolute;
  bottom: 20px !important;
  left: 70px !important;

  width: 150px !important;
  height: 6px;

  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 15px;
  padding: 2px;
}

/* bullets */
.banner-wrapper .swiper-pagination-bullet {
  width: 100%;
  /* auto divide */
  height: 100%;
  margin: 0 !important;

  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  opacity: 1;
  transition: 0.4s;
}

/* active */
.banner-wrapper .swiper-pagination-bullet-active {
  background: #fff;
}

/* === policy section start ==== */
/* section spacing */
.service-policy {
  margin-top: 120px;
  margin-bottom: 80px;
}

/* policy item */
.service-policy .policy-item {
  text-align: center;
  padding: 25px 15px;
  border-radius: 20px;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* hover effect */
.service-policy .policy-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* icon */
.service-policy .policy-icon {
  margin-bottom: 15px;
}

.service-policy .policy-icon i {
  font-size: 30px;
  padding: 16px;
  border-radius: 50%;
  background-color: var(--white-color);
  color: var(--them-color);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: all 0.3s ease;
}

/* icon hover animation */
.service-policy .policy-item:hover .policy-icon i {
  background-color: var(--them-color);
  color: var(--white-color);
  transform: rotate(8deg) scale(1.1);
}

/* heading */
.service-policy .policy-item h6 {
  font-size: 20px;
  font-family: var(--mainfont);
  padding-top: 25px;
  font-weight: 600;
  transition: 0.3s;
}

/* paragraph */
.service-policy p {
  font-size: 16px;
  color: var(--black-color);
  font-family: var(--primary-font);
  padding-top: 10px;
  margin-bottom: 0px;
  transition: 0.3s;
}

/* text hover */
.service-policy .policy-item:hover h6 {
  color: var(--them-color);
}

.service-policy .policy-item:hover p {
  opacity: 0.8;
}


/* === policy section end ==== */

/*  ==== sub banner section  start === */
.banner-statistics-area .modern-banner-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  transition: 0.4s ease;
}

/* Image */
.banner-statistics-area .banner-img-link {
  display: block;
  height: 100%;
}

.banner-statistics-area .zoom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-statistics-area .modern-banner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.3); */
  z-index: 1;
  transition: 0.5s ease;
}

.banner-statistics-area .modern-banner-card::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -88%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.05) 30%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0.05) 70%);
  transform: rotate(25deg);
  transition: 0.7s ease;
  z-index: 2;
}

.banner-statistics-area .modern-banner-card:hover::after {
  top: 100%;
  left: 100%;
}

.banner-statistics-area .modern-banner-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 30px;
  z-index: 3;
}

.banner-statistics-area .modern-tag {
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.banner-statistics-area .modern-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
}

.banner-statistics-area .white-text .modern-tag,
.banner-statistics-area .white-text .modern-title {
  color: var(--white-color);
}


.banner-statistics-area .black-text .modern-tag,
.banner-statistics-area .black-text .modern-title {
  color: var(--black-color);
}

/*  ==== sub banner section  end === */

/*  ==== modern group banner start === */
.modern-group-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 480px;
  transition: all 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modern-group-banner .banner-img-link {
  display: block;
  height: 100%;
  width: 100%;
}

.modern-group-banner .zoom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.modern-group-banner:hover .zoom-img {
  transform: scale(1.1);
}

/* Shimmer Effect */
.modern-group-banner::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 70%);
  transform: rotate(25deg);
  transition: 0.8s ease;
  z-index: 2;
  pointer-events: none;
}

.modern-group-banner:hover::after {
  top: 100%;
  left: 100%;
}

/* Content Box with Glassmorphism */
.modern-group-banner .modern-banner-content {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  padding: 30px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  z-index: 3;
  transition: all 0.4s ease;
}

.modern-group-banner:hover .modern-banner-content {
  background: rgba(255, 255, 255, 0.25);
  bottom: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.modern-group-banner .modern-tag {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modern-group-banner .modern-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .modern-group-banner {
    min-height: 400px;
    margin-bottom: 30px;
  }

  .modern-group-banner .modern-title {
    font-size: 32px;
  }
}

/*  ==== modern group banner end === */

/* === testimonail section start === */
/* ===== TESTIMONIAL SECTION ===== */
.testimonial-area {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/banner/testiomonial-bg.avif);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.modern-testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.modern-testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-quote-icon {
  font-size: 40px;
  color: var(--them-color);
  opacity: 0.3;
  margin-bottom: 20px;
}

.modern-testimonial-card p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 30px;
  flex-grow: 1;
}

.modern-testimonial-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: var(--them-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.author-details h5 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}

.author-details .ratings i {
  color: var(--them-color);
  font-size: 12px;
}


/* === testimonail section end === */
/* ===== MODERN QUICK VIEW MODAL ===== */
.modern-quick-view-modal {
  --modal-bg: #fff;
  --modal-radius: 20px;
  --btn-hover: var(--them-color, #c2a77a);
}

.modern-modal-content {
  background-color: var(--modal-bg);
  border: none;
  border-radius: var(--modal-radius);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
}

.modern-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1045;
  background: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.modern-close-btn:hover {
  background: var(--btn-hover);
  color: #fff;
  transform: rotate(90deg);
}

.modern-inner-padding {
  padding: 40px;
}

.modern-inner-padding .pro-large-img img {
  border-radius: 12px;
}

.modern-inner-padding .pro-nav-thumb img {
  height: 80px;
  width: 80px;
  border-radius: 8px;
  transition: 0.3s ease;
}

.modern-inner-padding .pro-nav-thumb.slick-current img {
  border-color: var(--btn-hover);
}

.modern-inner-padding .product-details-des {
  padding-left: 20px;
}

@media (max-width: 991px) {
  .modern-inner-padding {
    padding: 20px;
  }

  .modern-inner-padding .product-details-des {
    padding-left: 0;
    margin-top: 30px;
  }
}

/* ===== MOBILE MENU SCROLL ===== */
.mobile-navigation {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  max-height: 55vh !important;
  margin-bottom: 20px;
}

.mobile-navigation::-webkit-scrollbar {
  width: 6px;
}

.mobile-navigation::-webkit-scrollbar-thumb {
  background-color: var(--them-color, #c2a77a);
  border-radius: 10px;
}

/* ===== MODERN BREADCRUMB WRAPPER ===== */
.modern-breadcrumb {
  position: relative;
  background-color: #fcf9f5;
  padding: 100px 0;
  overflow: hidden;
  z-index: 1;
}

.modern-breadcrumb .breadcrumb-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.modern-breadcrumb .breadcrumb-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.modern-breadcrumb .breadcrumb-content {
  display: block;
}

.modern-breadcrumb .col-12 {
  text-align: center;
}

.modern-breadcrumb .bredcram-title {
  font-family: var(--mainfont), serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--black-color, #222);
  margin-bottom: 15px;
  text-transform: capitalize;
}

.modern-breadcrumb .bredcram-list ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.modern-breadcrumb .bredcram-list ul li {
  font-size: 16px;
  color: #666;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.modern-breadcrumb .bredcram-list ul li.active a {
  color: var(--them-color, #c2a77a);
  transition: 0.3s ease;
}

.modern-breadcrumb .bredcram-list ul li.active a:hover {
  color: var(--black-color, #222);
}

.modern-breadcrumb .bredcram-list ul li i {
  font-size: 14px;
  color: #999;
  margin-top: 2px;
}

@media (max-width: 767px) {
  .modern-breadcrumb {
    padding: 60px 0;
  }

  .modern-breadcrumb .bredcram-title {
    font-size: 32px;
  }

  .modern-breadcrumb .breadcrumb-content {
    padding: 0;
    width: 100%;
    display: block;
  }
}

/* ===== MARQUEE SLIDER DESIGN ===== */
.luxury-marquee-area,
.about-marquee-area {
  background-color: var(--black-color);
  padding: 25px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
  margin-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.marquee-swiper .swiper-slide {
  width: auto !important;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
}

.marquee-text {
  font-size: 26px;
  font-weight: 500;
  color: var(--white-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: var(--mainfont), serif;
}

.marquee-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee-icon svg {
  fill: var(--them-color);
  width: 100%;
  height: 100%;
}

/* ===== MODERN ABOUT SECTION ===== */
.about-img-group-modern {
  position: relative;
  padding-right: 30px;
  padding-bottom: 30px;
}

.about-img-main {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 250px 250px 20px 20px;
  box-shadow: var(--shadow-soft);
}

.about-img-main img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-img-group-modern:hover .about-img-main img {
  transform: scale(1.05);
}

.about-badge {
  position: absolute;
  bottom: 10%;
  right: 0;
  width: 120px;
  height: 120px;
  background: var(--them-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white-color);
  z-index: 3;
  border: 5px solid var(--white-color);
  animation: float 4s ease-in-out infinite;
}

.badge-number {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.2;
}

.about-shape-bg {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 0;
  bottom: 0;
  border: 2px solid var(--them-color);
  border-radius: 250px 250px 20px 20px;
  z-index: 1;
}

.about-content-modern .about-slogan {
  color: var(--them-color);
  font-family: var(--primary-font);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: block;
}

.about-content-modern .about-main-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 700;
}

.text-gradient {
  background: linear-gradient(135deg, var(--them-color), var(--them-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== GLOBAL UTILITIES ===== */
.text-justify {
  text-align: justify;
}

.about-description p {
  font-family: var(--primary-font);
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.about-features-grid {
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.feature-item i {
  font-size: 32px;
  color: var(--them-color);
}

.feature-item span {
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--black-color);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* ===== MODERN MISSION & VISION ===== */
.bg-gray-light {
  background-color: #f9f9f9;
}

.mission-card-modern {
  background: var(--white-color);
  padding: 60px 40px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.mission-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(173, 137, 63, 0.1);
}

.mission-icon-modern {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--them-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  box-shadow: 0 10px 25px rgba(173, 137, 63, 0.4);
  border: 5px solid var(--white-color);
}

.mission-title-modern {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--black-color);
  font-weight: 700;
}

.mission-description-modern {
  font-family: var(--primary-font);
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

@media (max-width: 991px) {
  .mission-card-modern {
    padding: 50px 25px 30px;
  }

  .mission-title-modern {
    font-size: 24px;
  }
}

/* ===== FOUNDER / OWNER SECTION ===== */
.owner-img-container {
  position: relative;
  padding: 20px;
}

.owner-img-main {
  position: relative;
  z-index: 2;
  border-radius: 200px 200px 15px 15px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.owner-img-main img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

.owner-img-container:hover .owner-img-main img {
  transform: scale(1.1);
}

.owner-shape-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--them-color);
  border-radius: 190px 190px 15px 15px;
  z-index: 1;
  transform: translate(-10px, -10px);
}

.founder-label {
  color: var(--them-color);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.owner-name-modern {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--black-color);
}

.owner-designation-modern {
  font-size: 18px;
  color: #888;
  font-family: var(--primary-font);
  font-weight: 500;
  margin-bottom: 35px;
}

.founder-quote-box {
  position: relative;
  padding-left: 50px;
  margin-bottom: 40px;
}

.founder-quote-box i {
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 40px;
  color: rgba(173, 137, 63, 0.2);
}

.owner-description-modern {
  font-family: var(--primary-font);
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  font-style: italic;
  text-align: justify;
}

.sig-font {
  font-family: 'Dancing Script', cursive, serif;
  font-size: 42px;
  color: var(--them-color);
  display: inline-block;
  border-bottom: 2px solid var(--them-color);
  padding-bottom: 5px;
}

.social-links-founder a {
  font-size: 24px;
  color: #333;
  margin-right: 20px;
  transition: color 0.3s ease;
}

.social-links-founder a:hover {
  color: var(--them-color);
}

@media (max-width: 991px) {
  .owner-name-modern {
    font-size: 42px;
  }

  .owner-img-container {
    margin-bottom: 60px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== RENTAL SLIDER ===== */
.rental-slider-wrapper {
  padding: 20px 0 50px;
  position: relative;
}

.rental-slider-wrapper .swiper-button-next,
.rental-slider-wrapper .swiper-button-prev {
  color: var(--them-color);
  background: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  top: 45%;
  z-index: 10;
}

.rental-slider-wrapper .swiper-button-next::after,
.rental-slider-wrapper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

.rental-slider-wrapper .swiper-pagination {
  bottom: 0px;
}

.rental-slider-wrapper .swiper-pagination-bullet-active {
  background: var(--them-color);
}

/* ===== PRODUCT SLIDER STANDARDIZED ===== */
.product-slider-swiper-4 {
  padding: 10px 0 30px;
  position: relative;
}

.product-slider-swiper-4 .swiper-button-next,
.product-slider-swiper-4 .swiper-button-prev {
  color: var(--them-color);
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  top: 45%;
  z-index: 10;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.product-slider-swiper-4 .swiper-button-next:hover,
.product-slider-swiper-4 .swiper-button-prev:hover {
  background: var(--them-color);
  color: #fff;
}

.product-slider-swiper-4 .swiper-button-next::after,
.product-slider-swiper-4 .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

/* Category Area Styles */
.category-area {
  padding-bottom: 80px;
}

.category-slider-wrapper {
  padding: 20px 0 50px;
}

.category-item {
  text-align: center;
  transition: all 0.4s ease;
}

.category-link {
  display: block;
  text-decoration: none;
}

.category-img {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #d4af37;
  /* Gold border */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: #fff;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.category-name {
  font-family: 'Marcellus', serif;
  font-size: 18px;
  color: #333;
  margin: 0;
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Hover Effects */
.category-item:hover .category-img {
  transform: translateY(-10px);
  border-color: #b8860b;
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

.category-item:hover .category-img img {
  transform: scale(1.15);
}

.category-item:hover .category-name {
  color: #d4af37;
  transform: scale(1.05);
}

.category-slider-wrapper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  transition: all 0.3s ease;
}

.category-slider-wrapper .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background: #d4af37;
}

@media (max-width: 767px) {
  .category-img {
    width: 130px;
    height: 130px;
  }

  .category-name {
    font-size: 16px;
  }
}

/*--- Modern Sidebar Styles ---*/
.sidebar-wrapper {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
}

.sidebar-single {
  margin-bottom: 35px;
}

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

.sidebar-title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  text-transform: capitalize;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.sidebar-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--them-color);
}

.sidebar-thin-title {
  font-size: 16px;
  font-weight: 500;
  color: #222;
}

.clear-filter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fdfaf5;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px dashed var(--them-color);
}

.clear-filter-btn {
  font-size: 13px;
  color: var(--them-color);
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.clear-filter-btn:hover {
  color: #222;
}

.shop-categories-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-categories-list li {
  margin-bottom: 12px;
}

.shop-categories-list li:last-child {
  margin-bottom: 0;
}

.shop-categories-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #555;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
  background: #f9f9f9;
  text-decoration: none;
}

.shop-categories-list li a:hover,
.shop-categories-list li.active a {
  background: var(--them-color);
  color: #fff;
  padding-left: 15px;
}

.cat-count {
  font-size: 12px;
  background: #eee;
  color: #777;
  padding: 2px 8px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.shop-categories-list li a:hover .cat-count,
.shop-categories-list li.active a .cat-count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}


/* Price Range Slider Modern */
.price-input input {
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--them-color);
  background: transparent;
  width: 100%;
}

.filter-btn-modern {
  background: #222;
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn-modern:hover {
  background: var(--them-color);
}

/* Custom Checkbox Modern */
.checkbox-container-modern {
  list-style: none;
  padding: 0;
}

.checkbox-container-modern li {
  margin-bottom: 12px;
}

.custom-checkbox-modern {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 14px;
  color: #555;
  user-select: none;
  transition: all 0.3s ease;
}

.custom-checkbox-modern input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 18px;
  width: 18px;
  background-color: #eee;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.custom-checkbox-modern:hover input~.checkmark {
  background-color: #ccc;
}

.custom-checkbox-modern input:checked~.checkmark {
  background-color: var(--them-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox-modern input:checked~.checkmark:after {
  display: block;
}

.custom-checkbox-modern .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox-modern:hover {
  color: var(--them-color);
}

/*--- Modern Login/Register Styles ---*/
.login-register-wrapper {
  background-color: #fafafa;
}

.modern-form-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.modern-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.form-title {
  margin-bottom: 30px;
}

.form-heading {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.form-subtitle {
  color: #777;
  font-size: 14px;
}

.input-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--them-color);
  font-size: 18px;
}

.input-with-icon input {
  width: 100%;
  height: 50px;
  padding: 0 20px 0 45px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

.input-with-icon input:focus {
  border-color: var(--them-color);
  background: #fff;
  box-shadow: 0 0 10px rgba(var(--them-color-rgb), 0.1);
}

.forget-pwd {
  font-size: 13px;
  color: #777;
  transition: color 0.3s ease;
}

.forget-pwd:hover {
  color: var(--them-color);
}

.form-btn-area {
  margin-top: 25px;
}

.modern-login-btn {
  width: 100%;
  height: 55px;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.modern-login-btn:hover {
  background: var(--them-color);
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.register-side {
  border-left: 2px solid #f9f9f9;
}

.register-btn {
  background: var(--them-color);
}

.register-btn:hover {
  background: #222;
}

.terms-link {
  color: var(--them-color);
  font-weight: 600;
}

.form-footer-text {
  margin-top: 25px;
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
}

.form-footer-text p {
  font-size: 14px;
  color: #666;
}

.form-footer-text a {
  color: var(--them-color);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.form-footer-text a:hover {
  border-bottom-color: var(--them-color);
  color: #222;
}

@media (max-width: 576px) {
  .login-reg-form-meta {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 15px;
  }
}

/*--- My Account Modern Styles ---*/
.account-details-only {
  max-width: 100%;
}

.password-change-fieldset {
  border: 1px solid #f0f0f0;
  padding: 25px;
  border-radius: 15px;
  margin-top: 30px;
}

.password-change-fieldset legend {
  float: none;
  width: auto;
  padding: 0 15px;
  font-size: 16px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*--- Product Details Image Styles ---*/
.product-large-slider .pro-large-img img {
  width: 100%;
  height: 450px;
  border-radius: 15px;
}

.pro-nav .pro-nav-thumb img {
  width: 100%;
  height: 120px;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.pro-nav .pro-nav-thumb.slick-current img {
  border-color: var(--them-color);
}

@media (max-width: 991px) {
  .product-large-slider .pro-large-img img {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .product-large-slider .pro-large-img img {
    height: 350px;
  }

  .pro-nav .pro-nav-thumb img {
    height: 80px;
  }
}

/*--- Modern Product Details Description Styles ---*/
.modern-details-des {
  padding-left: 20px;
}

.category-tag a {
  font-size: 13px;
  font-weight: 700;
  color: var(--them-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
  background: (var(--them-color), 0.05);
  padding: 5px 15px;
  border-radius: 50px;
}

.modern-details-des .product-name {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.2;
}

.ratings-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars i {
  color: #ffb400;
  font-size: 16px;
}

.review-count {
  font-size: 14px;
  color: #888;
}

.modern-price-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.modern-price-box .price-regular {
  font-size: 28px;
  font-weight: 800;
  color: #222;
}

.modern-price-box .price-old {
  font-size: 18px;
  color: #999;
}

.discount-badge {
  background: #ff4747;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
}

.stock-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.stock-status.in-stock i {
  color: #28a745;
}

.modern-details-des .pro-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-right: 30px;
}

.quantity-selector .option-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0;
}

.quantity-selector .pro-qty {
  width: 130px;
  height: 45px;
  border: 1px solid #ddd;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  background: #fff;
}

.quantity-selector .pro-qty input {
  border: none;
  font-weight: 700;
  width: 40px;
  text-align: center;
  background: transparent;
  pointer-events: none;
  /* Only buttons should change value */
}

.qtybtn {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qtybtn:hover {
  color: var(--them-color);
}

.action-buttons {
  gap: 15px;
  flex: 1;
}

.add-to-cart-btn {
  height: 55px;
  background: #222;
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  flex: 1;
}

.buy-now-btn {
  height: 55px;
  background: var(--them-color);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.buy-now-btn:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.useful-links-modern {
  display: flex;
  gap: 25px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 0;
}

.util-link {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.util-link i {
  font-size: 18px;
  color: var(--them-color);
}

.util-link:hover {
  color: var(--them-color);
}

.product-meta p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.product-meta p span {
  font-weight: 700;
  color: #222;
  margin-right: 10px;
}

.product-meta p a {
  color: #666;
}

.product-meta p a:hover {
  color: var(--them-color);
}

@media (max-width: 1199px) {
  .modern-details-des .product-name {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .quantity-cart-box {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 20px;
  }

  .quantity-selector {
    margin-right: 0;
  }

  .action-buttons {
    width: 100%;
    flex-direction: column;
  }

  .useful-links-modern {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 991px) {
  .register-side {
    margin-top: 30px;
    border-left: none;
  }
}

/*--- Modern Product Details Description Styles ---*/
.modern-details-des {
  padding-left: 20px;
}

.category-tag a {
  font-size: 13px;
  font-weight: 700;
  color: var(--them-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 50px;
  background: #f9f4ef;
}

.modern-details-des .product-name {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.2;
}

.ratings-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars i {
  color: #ffb400;
  font-size: 16px;
}

.review-count {
  font-size: 14px;
  color: #888;
}

.modern-price-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.modern-price-box .price-regular {
  font-size: 28px;
  font-weight: 800;
  color: #222;
}

.modern-price-box .price-old {
  font-size: 18px;
  color: #999;
}

.discount-badge {
  background: #ff4747;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
}

.stock-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.stock-status.in-stock i {
  color: #28a745;
}

.modern-details-des .pro-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-right: 30px;
}

.quantity-selector .option-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0;
}

.quantity-selector .pro-qty {
  width: 130px;
  height: 45px;
  border: 1px solid #ddd;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  background: #fff;
}

.quantity-selector .pro-qty input {
  border: none;
  font-weight: 700;
  width: 40px;
  text-align: center;
  background: transparent;
}

.qtybtn {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qtybtn:hover {
  color: var(--them-color);
}

.action-buttons {
  gap: 15px;
  flex: 1;
}

.add-to-cart-btn {
  height: 55px;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  flex: 1;
  padding: 0 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.add-to-cart-btn:hover {
  background: var(--them-color);
  transform: translateY(-2px);
}

.buy-now-btn {
  height: 55px;
  background: var(--them-color);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  flex: 1;
  padding: 0 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.buy-now-btn:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.useful-links-modern {
  display: flex;
  gap: 25px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 0;
}

.util-link {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.util-link i {
  font-size: 18px;
  color: var(--them-color);
}

.util-link:hover {
  color: var(--them-color);
}

.product-meta p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.product-meta p span {
  font-weight: 700;
  color: #222;
  margin-right: 10px;
}

.product-meta p a {
  color: #666;
}

.product-meta p a:hover {
  color: var(--them-color);
}

/*--- Modern Product Review Info / Tabs ---*/
.modern-details-tabs {
  margin-top: 50px;
}

.modern-nav-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
}

.modern-nav-tabs li a {
  font-size: 16px;
  font-weight: 700;
  color: #888;
  padding: 14px 28px;
  display: block;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px 8px 0 0;
  transition: all 0.3s ease;
}

.modern-nav-tabs li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--them-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.modern-nav-tabs li a:hover {
  color: #222;
  background: #f9f4ef;
}

.modern-nav-tabs li a.active {
  color: #222;
  background: #f9f4ef;
}

.modern-nav-tabs li a.active::after {
  transform: scaleX(1);
}

.modern-tab-content .tab-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.modern-tab-content .tab-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--them-color);
}

.modern-tab-content .tab-pane p {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 20px;
}

.modern-spec-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.modern-spec-table td {
  padding: 15px 25px;
  font-size: 15px;
  border: none;
  border-bottom: 1px solid #f0f0f0;
}

.modern-spec-table tr:last-child td {
  border-bottom: none;
}

.modern-spec-table td:first-child {
  font-weight: 700;
  color: #222;
  width: 30%;
  background: #f9f4ef;
}

.modern-spec-table td:last-child {
  color: #555;
  background: #fff;
}

@media (max-width: 1199px) {
  .modern-details-des .product-name {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .modern-nav-tabs {
    gap: 5px;
    flex-wrap: wrap;
  }

  .modern-nav-tabs li a {
    font-size: 14px;
    padding: 10px 18px;
  }

  .modern-details-des {
    padding-left: 0;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .quantity-cart-box {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 20px;
  }

  .quantity-selector {
    margin-right: 0;
  }

  .action-buttons {
    width: 100%;
    flex-direction: column;
  }

  .useful-links-modern {
    flex-direction: column;
    gap: 15px;
  }
}

/*--- Modern Cart Styles ---*/
.modern-cart-wrapper {
  background: #fafafa;
}

.modern-cart-table {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.modern-cart-table .table {
  margin-bottom: 0;
}

.modern-cart-table .table thead tr {
  background: #222;
}

.modern-cart-table .table thead th {
  color: var(--them-color);
  font-family: var(--modern-font);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 18px 20px;
  border: none;
}

.modern-cart-table .table tbody tr {
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.2s ease;
}

.modern-cart-table .table tbody tr:hover {
  background: #fdf9f5;
}

.modern-cart-table .table tbody td {
  padding: 20px;
  vertical-align: middle;
  border: none;
  font-size: 15px;
  color: #444;
}

.modern-cart-table .pro-thumbnail img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
}

.modern-cart-table .pro-title a {
  font-weight: 700;
  color: #222;
  font-size: 15px;
  transition: color 0.3s ease;
}

.modern-cart-table .pro-title a:hover {
  color: var(--them-color);
}

.modern-cart-table .pro-price span,
.modern-cart-table .pro-subtotal span {
  font-weight: 700;
  color: #222;
}

.modern-cart-table .pro-subtotal span {
  color: var(--them-color);
}

.cart-qty {
  width: 100px;
  height: 38px;
  border: 1px solid #eee;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  background: #f9f9f9;
}

.cart-qty input {
  border: none;
  background: transparent;
  width: 30px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}

.modern-cart-table .pro-remove a {
  color: #bbb;
  font-size: 20px;
  transition: color 0.3s ease;
}

.modern-cart-table .pro-remove a:hover {
  color: #ff4747;
}

/* Cart Actions Bar */
.modern-cart-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 16px;
  padding: 25px 30px;
  margin-top: 20px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.04);
  flex-wrap: wrap;
  gap: 20px;
}

.coupon-section h6 {
  font-size: 14px;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.coupon-section h6 i {
  font-size: 16px;
  color: var(--them-color);
}

.coupon-form {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.apply-coupon-wrapper form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.coupon-input-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 1;
  min-width: 220px;
}

.coupon-input-wrap i {
  position: absolute;
  left: 16px;
  font-size: 17px;
  color: #aaa;
  pointer-events: none;
  z-index: 1;
}

.coupon-input-wrap input {
  height: 50px;
  border: 1.5px solid #e0e0e0;
  border-radius: 50px;
  padding: 0 20px 0 46px;
  font-size: 14px;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  background: #fff;
}

.coupon-input-wrap input:focus {
  border-color: var(--them-color);
  box-shadow: 0 0 0 3px rgba(var(--them-color-rgb, 180, 130, 70), 0.1);
}

.coupon-btn {
  height: 50px;
  padding: 0 28px;
  font-size: 14px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.update-cart-btn {
  height: 50px;
  padding: 0 28px;
  font-size: 14px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* Order Summary / Totals Card */
.cart-totals-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.07);
}

.cart-totals-title {
  font-size: 22px;
  font-weight: 800;
  color: #222;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
}

.cart-totals-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--them-color);
}

.cart-totals-table {
  margin-bottom: 10px;
}

.totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f5f5f5;
}

.totals-row:last-child {
  border-bottom: none;
}

.totals-label {
  font-size: 15px;
  color: #666;
  font-weight: 500;
}

.totals-value {
  font-size: 15px;
  font-weight: 700;
  color: #222;
}

.free-tag {
  color: #28a745;
}

.discount-row .totals-value {
  color: #ff4747;
}

.grand-total {
  padding-top: 18px;
  margin-top: 5px;
}

.grand-total .totals-label {
  font-size: 18px;
  font-weight: 800;
  color: #222;
}

.grand-total .totals-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--them-color);
}

.checkout-btn {
  width: 100%;
  padding: 0 20px;
  height: 55px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.continue-shopping-link {
  font-size: 14px;
  color: #888;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.continue-shopping-link:hover {
  color: var(--them-color);
}

@media (max-width: 767px) {
  .modern-cart-actions-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .coupon-form {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .coupon-input-wrap {
    width: 100%;
    min-width: unset;
  }

  .coupon-input-wrap input {
    width: 100%;
  }

  .cart-totals-card {
    padding: 25px 20px;
    margin-top: 30px;
  }
}

/*--- Modern Checkout Styles ---*/
.modern-checkout {
  background: #fafafa;
}

/* Progress Steps */
.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.checkout-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ddd;
  color: #888;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.step-label {
  font-size: 13px;
  font-weight: 600;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.checkout-step.completed .step-num {
  background: #28a745;
  color: #fff;
}

.checkout-step.active .step-num {
  background: #222;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.checkout-step.active .step-label {
  color: #222;
}

.checkout-step.completed .step-label {
  color: #28a745;
}

.checkout-step-line {
  flex: 1;
  height: 2px;
  background: #ddd;
  margin-bottom: 22px;
  max-width: 100px;
}

.checkout-step-line.completed {
  background: #28a745;
}

/* Form Card */
.checkout-form-card,
.checkout-summary-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.checkout-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #222;
  margin-bottom: 28px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.checkout-card-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--them-color);
}

.checkout-card-title i {
  font-size: 22px;
  color: var(--them-color);
}

/* Modern Input Group */
.modern-input-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 4px;
}

.modern-input-group label {
  font-size: 13px;
  font-weight: 700;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modern-input-group label.required::after {
  content: ' *';
  color: var(--them-color);
}

.modern-input-group input,
.modern-input-group select,
.modern-input-group textarea {
  height: 48px;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  padding: 0 16px;
  font-size: 14px;
  color: #333;
  background: #fdfdfd;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  width: 100%;
}

.modern-input-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 40px;
}

.modern-input-group textarea {
  height: auto;
  resize: vertical;
  padding: 12px 16px;
}

.modern-input-group input:focus,
.modern-input-group select:focus,
.modern-input-group textarea:focus {
  border-color: var(--them-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(180, 130, 70, 0.08);
}

/* Toggle Checkboxes */
.toggle-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.toggle-checkbox input {
  display: none;
}

.toggle-checkbox a {
  color: var(--them-color);
}

.toggle-checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 5px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
}

.toggle-checkbox input:checked+.toggle-checkmark {
  background: #222;
  border-color: #222;
}

.toggle-checkbox input:checked+.toggle-checkmark::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 7px;
  height: 12px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* Order Items */
.order-items {
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #f9f9f9;
}

.order-item-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.order-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.item-name {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.item-qty {
  font-size: 13px;
  color: #999;
}

.item-price {
  font-size: 15px;
  font-weight: 800;
  color: #222;
}

.order-totals {
  margin-bottom: 25px;
}

/* Payment Methods */
.payment-methods-area {
  border-top: 1px solid #f0f0f0;
  padding-top: 25px;
  margin-top: 5px;
}

.payment-title {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-title i {
  color: var(--them-color);
  font-size: 18px;
}

.payment-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-option {
  flex: 1;
  min-width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 10px;
  border: 2px solid #eee;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 13px;
  font-weight: 600;
  color: #666;
}

.payment-option input {
  display: none;
}

.payment-option i {
  font-size: 22px;
  color: #aaa;
  transition: color 0.3s ease;
}

.payment-option.active,
.payment-option:hover {
  border-color: #222;
  background: #f9f9f9;
  color: #222;
}

.payment-option.active i {
  color: var(--them-color);
}

.payment-note {
  margin-top: 12px;
  background: #f9f4ef;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-note i {
  color: var(--them-color);
  font-size: 16px;
}

@media (max-width: 991px) {

  .checkout-form-card,
  .checkout-summary-card {
    padding: 25px 20px;
  }

  .checkout-step-line {
    max-width: 60px;
  }
}

/*--- Modern Thank You Page ---*/
.modern-thank-wrapper {
  background: #fafafa;
}

/* Success Hero Card */
.thank-hero-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px 40px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}

.thank-check-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #28a745, #20c65a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.thank-check-icon i {
  font-size: 40px;
  color: #fff;
}

@keyframes popIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-confirm-num {
  font-size: 14px;
  color: #999;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.thank-confirm-num strong {
  color: var(--them-color);
}

.thank-main-title {
  font-size: 32px;
  font-weight: 800;
  color: #222;
  margin-bottom: 12px;
}

.thank-subtitle {
  font-size: 15px;
  color: #777;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* WhatsApp Banner */
.thank-whatsapp-banner {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 16px;
  padding: 22px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.wapp-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wapp-info>i {
  font-size: 40px;
  color: #fff;
  flex-shrink: 0;
}

.wapp-info div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wapp-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.wapp-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.wapp-btn {
  background: #fff !important;
  color: #128C7E !important;
  border-color: #fff !important;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wapp-btn:hover {
  background: #f0f0f0 !important;
}

/* Order Details Card */
.thank-details-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}

.thank-section-title {
  font-size: 18px;
  font-weight: 800;
  color: #222;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.thank-section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--them-color);
}

.thank-section-title i {
  font-size: 20px;
  color: var(--them-color);
}

.thank-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.thank-detail-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  background: #f9f9f9;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
}

.detail-label {
  font-size: 12px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-label i {
  color: var(--them-color);
  font-size: 14px;
}

.detail-value {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

a.detail-value {
  color: var(--them-color);
  transition: color 0.3s;
}

a.detail-value:hover {
  color: #222;
}

.thank-payment-note {
  background: #f9f4ef;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 10px;
}

.thank-payment-note i {
  color: var(--them-color);
  font-size: 18px;
  flex-shrink: 0;
}

/* Action Buttons */
.thank-action-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.thank-action-btn {
  flex: 1;
  min-width: 180px;
  height: 52px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid #222;
  color: #222;
  transition: all 0.3s ease;
  text-decoration: none;
}

.thank-action-btn:hover {
  background: #222;
  color: #fff;
}

@media (max-width: 767px) {
  .thank-hero-card {
    padding: 35px 20px 30px;
  }

  .thank-main-title {
    font-size: 24px;
  }

  .thank-whatsapp-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .thank-details-grid {
    grid-template-columns: 1fr;
  }

  .thank-details-card {
    padding: 25px 20px;
  }

  .wapp-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== ORDER WRAPPER ===== */
.modern-order-wrapper {
  background: #f9f7f2;
  font-family: var(--primary-font);
}

/* ===== HEADER ===== */
.order-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.order-page-title {
  font-size: 28px;
  font-family: var(--mainfont);
  color: var(--black-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.order-page-title i {
  color: var(--them-color);
}

.order-page-sub {
  font-size: 14px;
  color: #777;
  margin-top: 5px;
}

/* ===== BUTTON ===== */
.order-shop-btn {
  padding: 10px 22px;
  border-radius: 30px;
  background: var(--them-color);
  color: var(--white-color);
  font-size: 14px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

.order-shop-btn:hover {
  background: var(--them-dark);
  transform: translateY(-2px);
  color: var(--white-color);
}

/* ===== CARD ===== */
.modern-order-card {
  background: var(--white-color);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* ===== TABLE SCROLL ===== */
.table-responsive {
  width: 100%;
}

/* 👉 992px પછી scroll */
@media (max-width: 992px) {
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .order-table {
    min-width: 750px;
  }
}

/* ===== TABLE ===== */
.order-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

/* ===== HEADER ===== */
.order-table thead th {
  font-size: 13px;
  color: var(--gray-color);
  font-weight: 500;
  border: none;
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== ROW ===== */
.order-table tbody tr {
  background: #fff;
  border-radius: 14px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.order-table tbody tr:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ===== CELL ===== */
.order-table td {
  padding: 16px;
  border: none;
  vertical-align: middle;
}

/* Rounded row effect */
.order-table tbody tr td:first-child {
  border-radius: 14px 0 0 14px;
}

.order-table tbody tr td:last-child {
  border-radius: 0 14px 14px 0;
}

/* ===== TEXT ===== */
.order-num strong {
  color: var(--black-color);
}

.order-date {
  color: #666;
  font-size: 14px;
}

.order-date i {
  color: var(--them-color);
}

.order-total strong {
  color: var(--them-dark);
  font-size: 15px;
}

/* ===== STATUS ===== */
.order-badge {
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}

/* Theme badges */
.order-badge.placed {
  background: rgba(173, 137, 63, 0.15);
  color: var(--them-dark);
}

.order-badge.delivered {
  background: rgba(0, 168, 107, 0.12);
  color: #00a86b;
}

.order-badge.cancelled {
  background: rgba(255, 77, 79, 0.12);
  color: #ff4d4f;
}

/* ===== ACTION BUTTON ===== */
.order-view-btn {
  padding: 8px 16px;
  border-radius: 25px;
  background: transparent;
  border: 1px solid var(--them-color);
  color: var(--them-color);
  font-size: 13px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.order-view-btn:hover {
  background: var(--them-color);
  color: var(--white-color);
}

/* ===== FOOTER ===== */
.order-table-footer {
  margin-top: 15px;
  text-align: right;
  font-size: 13px;
  color: #888;
}

.order-table-footer i {
  color: var(--them-color);
}

/* ===== SCROLLBAR (Modern Gold Style) ===== */
.table-responsive::-webkit-scrollbar {
  height: 6px;
}

.table-responsive::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: var(--them-color);
  border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
  background: var(--them-dark);
}



/* ===== WRAPPER ===== */
.view_wrapper {
  background: #f9f7f2;
  padding: 60px 0;
  font-family: var(--primary-font);
}

/* ===== MAIN BOX ===== */
.view_wrapper .main-box {
  background: var(--white-color);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* ===== HEADER ===== */
.view_wrapper .main-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 10px;
}

.view_wrapper .main-text h4 {
  font-family: var(--mainfont);
  font-size: 24px;
  color: var(--black-color);
}

/* ===== STATUS ===== */
.view_wrapper .product__card--btn {
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  background: rgba(173, 137, 63, 0.15);
  color: var(--them-dark);
  border: none;
}

/* ===== TABLE WRAPPER ===== */
.view_wrapper .table-responsive {
  width: 100%;
}

/* ===== TABLE ===== */
.view_wrapper .invoice-table {
  width: 100%;
  margin-top: 15px;
  border-collapse: separate;
  border-spacing: 0 10px;
}

/* HEADER */
.view_wrapper .invoice-table thead th {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--gray-color);
  font-weight: 500;
  border: none;
}

/* ROW */
.view_wrapper .invoice-table tbody tr {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: 0.3s;
}

.view_wrapper .invoice-table tbody tr:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

/* CELL */
.view_wrapper .invoice-table td {
  padding: 14px;
  border: none;
  vertical-align: middle;
}

/* ROUND */
.view_wrapper .invoice-table tbody tr td:first-child {
  border-radius: 12px 0 0 12px;
}

.view_wrapper .invoice-table tbody tr td:last-child {
  border-radius: 0 12px 12px 0;
}

/* TEXT */
.view_wrapper .item-desc-1 span {
  font-weight: 500;
  color: var(--black-color);
}

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

.view_wrapper .f-w-600 {
  font-weight: 600;
  color: var(--them-dark);
}

/* TOTAL ROW */
.view_wrapper .invoice-table tbody tr:last-child {
  background: rgba(173, 137, 63, 0.08);
}

/* ===== TABS ===== */
.view_wrapper .nav-tabs {
  border-bottom: 1px solid #eee;
  margin-top: 30px;
}

.view_wrapper .nav-tabs .nav-link {
  border: none;
  color: #777;
  font-size: 14px;
  padding: 10px 15px;
  position: relative;
}

.view_wrapper .nav-tabs .nav-link.active {
  color: var(--them-color);
  font-weight: 600;
}

.view_wrapper .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--them-color);
}

/* ===== CONTENT ===== */
.view_wrapper .tab-content {
  padding-top: 20px;
}

/* SUCCESS */
.view_wrapper .text-success {
  color: #00a86b !important;
}

/* RECEIVER */
.view_wrapper .tracking-receiver {
  list-style: none;
  padding: 0;
}

.view_wrapper .tracking-receiver li {
  background: #fff;
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  justify-content: space-between;
}

.view_wrapper .tracking-receiver strong {
  color: var(--them-dark);
}

/* ===== 🔥 992px SCROLL (MAIN PART) ===== */
@media (max-width: 992px) {
  .view_wrapper .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .view_wrapper .invoice-table {
    min-width: 650px;
    /* 👈 scroll trigger */
  }
}

/* ===== SCROLLBAR DESIGN ===== */
.view_wrapper .table-responsive::-webkit-scrollbar {
  height: 6px;
}

.view_wrapper .table-responsive::-webkit-scrollbar-track {
  background: #eee;
}

.view_wrapper .table-responsive::-webkit-scrollbar-thumb {
  background: var(--them-color);
  border-radius: 10px;
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
  .view_wrapper .main-box {
    padding: 20px;
  }

  .view_wrapper .main-text h4 {
    font-size: 20px;
  }

  .view_wrapper .tracking-receiver li {
    flex-direction: column;
    gap: 5px;
  }
}

/* ===== FORCE SCROLL ===== */
.view_wrapper .custom-scroll {
  width: 100%;
}

@media (max-width: 992px) {
  .view_wrapper .custom-scroll {
    display: block;
    overflow-x: auto !important;
    white-space: nowrap;
  }

  .view_wrapper .invoice-table {
    min-width: 700px !important;
  }
}


.view_wrapper .main-box {
  overflow: visible !important;
}

/*------ Video Section Minimalist Style Start ------*/
.video-section .product-item {
  margin-bottom: 30px;
  position: relative;
}

.video-section .product-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: #000;
  border-radius: 15px;
}

.video-section .promo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 2;
}

.product-item:hover .promo-video {
  opacity: 1;
  transform: scale(1.1);
}

.product-item:hover .video-content-overlay {
  opacity: 1;
  transform: translateY(0);
}

.video-section .product-name {
  color: #fff;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.video-section .product-slider-swiper-4 {
  padding-bottom: 50px;
}

/*------ Video Section Minimalist Style End ------*/

/*------ Rental Date Input Style Start ------*/
.rental-dates-wrapper {
  background: #fdfaf5;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e9dfc9;
  margin-bottom: 25px;
}

.date-input-group .option-title {
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #333;
}

.modern-date-input {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 15px;
  height: 48px;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
  background: #fff;
  width: 100%;
}

.modern-date-input:focus {
  border-color: var(--them-color);
  box-shadow: 0 0 0 3px rgba(173, 137, 63, 0.1);
  outline: none;
}

.stock-status.in-stock {
  background: rgba(40, 167, 69, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-flex;
  color: #28a745;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.stock-status.out-of-stock {
  background: rgba(220, 53, 69, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-flex;
  color: #dc3545;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

/*------ Rental Date Input Style End ------*/

/*------ Wishlist Modern Style Start ------*/
.modern-wishlist-container {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 50px;
}

.modern-wishlist-table {
  border-collapse: separate;
  border-spacing: 0 15px;
  width: 100%;
  border: none !important;
  min-width: 800px;
  /* Ensure table doesn't cramp too much, forcing scroll */
}

.modern-wishlist-table thead th {
  border: none !important;
  background: #fdfaf5;
  padding: 18px 15px;
  font-family: var(--mainfont);
  font-size: 15px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modern-wishlist-table tbody tr {
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.modern-wishlist-table tbody tr:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.modern-wishlist-table td {
  padding: 20px 15px;
  vertical-align: middle;
  border-top: 1px solid #f8f8f8 !important;
  border-bottom: 1px solid #f8f8f8 !important;
}

.modern-wishlist-table td:first-child {
  border-left: 1px solid #f8f8f8 !important;
  border-radius: 12px 0 0 12px;
}

.modern-wishlist-table td:last-child {
  border-right: 1px solid #f8f8f8 !important;
  border-radius: 0 12px 12px 0;
}

.modern-wishlist-table .pro-thumbnail img {
  width: 80px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.modern-wishlist-table .pro-title a {
  font-family: var(--mainfont);
  font-size: 17px;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.modern-wishlist-table .pro-title a:hover {
  color: var(--them-color);
}

.modern-wishlist-table .pro-price span {
  font-weight: 600;
  color: var(--them-color);
  font-size: 16px;
}

.stock-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stock-badge.in-stock {
  background: rgba(40, 167, 69, 0.08);
  color: #28a745;
}

.stock-badge.out-of-stock {
  background: rgba(220, 53, 69, 0.08);
  color: #dc3545;
}

.small-btn {
  padding: 10px 20px !important;
  font-size: 12px !important;
  letter-spacing: 0.5px;
}

.remove-wishlist-item {
  color: #bbb;
  font-size: 22px;
  transition: 0.3s;
}

.remove-wishlist-item:hover {
  color: #dc3545;
  transform: scale(1.15) rotate(90deg);
}

/* Premium Scrollbar for table-responsive */
.table-responsive::-webkit-scrollbar {
  height: 6px;
}

.table-responsive::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: #e9dfc9;
  border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
  background: var(--them-color);
}

@media (max-width: 991px) {
  .modern-wishlist-container {
    padding: 20px 15px;
  }
}

/*------ Wishlist Modern Style End ------*/



/*------ contact form area start -------*/
.contact-area {
  margin-top: -4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767.98px) {
  .contact-area {
    margin-bottom: -5px;
  }
}

.contact-message h2 {
  color: #222222;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  padding-bottom: 28px;
  text-transform: capitalize;
}

@media only screen and (max-width: 575.98px) {
  .contact-message h2 {
    font-size: 18px;
    padding-bottom: 15px;
  }
}

.contact-message form input,
.contact-message form textarea {
  width: 100%;
  border: none;
  padding: 10px 10px;
  border-bottom: 3px solid transparent;
  background-color: #f7f7f7;
  margin-bottom: 30px;
}

.contact-message form textarea {
  height: 150px;
}

/*------ contact form area start -------*/

/*------ contact info area start -------*/
.contact-info {
  height: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-info {
    margin-top: 77px;
  }
}

@media only screen and (max-width: 767.98px) {
  .contact-info {
    margin-top: 60px;
  }
}

.contact-info p {
  padding-bottom: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-info p {
    padding-bottom: 5px;
  }
}

.contact-info ul li {
  border-bottom: 1px solid #efefef;
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 479.98px) {
  .contact-info ul li {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
}

.contact-info ul li:last-child {
  border-bottom: none;
}

.contact-info ul li i {
  font-size: 18px;
  padding-right: 10px;
}

.contact-info .working-time h6 {
  padding-bottom: 5px;
}

.contact-info .working-time p {
  padding-bottom: 0;
}

.contact-info .working-time p span {
  color: #222222;
  padding-right: 10px;
}

.contact-title {
  line-height: 1;
  padding-bottom: 22px;
  font-size: 30px;
}


.contact-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 55px;
  min-width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 14px;
}

.bg-orange {
  background: #ad893f;
}

.contact-meta h5 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #222;
}

.contact-meta p {
  margin: 0;
  color: #666;
}

.follow-us h6 {
  font-size: 18px;
  margin-bottom: 10px;
}

.social-links .social-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f2f2f2;
  color: #333;
  border: 1px solid #e6e6e6;
  transition: all 0.25s ease;
}

.social-links .social-btn:hover {
  background: #ad893f;
  color: #fff;
  border-color: #ad893f;
}

@media only screen and (max-width: 575.98px) {
  .contact-title {
    font-size: 18px;
    padding-bottom: 8px;
  }
}


.contact-meta a{
  color: var(--black-color);
  font-size: 15px;
}

/*------ contact info area end -------*/