/* Medicom */

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

body {
  margin: 0;
  color: var(--body-color);
  overflow-x: hidden;
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (max-width: 480px) {
  body {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  body {
    font-size: 14px;
  }
}

h1 {
  font-size: 60px;
  line-height: 1.0833333333;
}

h2 {
  font-size: 36px;
  line-height: 1.4444444444;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  h2 {
    font-size: 27px;
  }
}
@media only screen and (max-width: 480px) {
  h2 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 375px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 28px;
  line-height: 1.0833333333;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 575.98px) {
  h3 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 480px) {
  h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 24px;
  line-height: 1.0833333333;
}
@media only screen and (max-width: 575.98px) {
  h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 375px) {
  h4 {
    font-size: 21px;
  }
}

h5 {
  font-size: 20px;
  line-height: 1.2380952381;
}
@media only screen and (max-width: 375px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 18px;
  line-height: 1.2380952381;
}
@media only screen and (max-width: 375px) {
  h6 {
    font-size: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  margin: 0;
  -webkit-transition: 300ms;
  transition: 300ms;
}

p {
  color: var(--light-color);
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin-bottom: 0;
  line-height: 26px;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
  color: var(--extra-light-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}

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

pre {
  word-break: break-word;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul li {
  list-style: none;
}

ol {
  counter-reset: counter;
  padding-left: 0;
}

ol li {
  list-style: none;
}

ol li:before {
  counter-increment: counter;
  content: counter(counter);
  font-weight: 500;
  margin-right: 10px;
}

span {
  display: inline-block;
}

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

/* Chrome */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox  */
input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}

.form-control {
  width: 100%;
}

textarea {
  width: 100%;
  padding: 15px 15px 0;
}

/* Common Style */
.margin-0 {
  margin: 0 !important;
}

.padding-0 {
  padding: 0 !important;
}

.radius-parcent-50 {
  border-radius: 50%;
}

.radius-50 {
  border-radius: 50px;
}

.radius-40 {
  border-radius: 40px;
}

.radius-35 {
  border-radius: 35px;
}

.radius-30 {
  border-radius: 30px;
}

.radius-20 {
  border-radius: 20px;
}

.radius-15 {
  border-radius: 15px;
}

.radius-10 {
  border-radius: 10px;
}

.radius-5 {
  border-radius: 5px;
}

.radius-0 {
  border-radius: 0px !important;
}

.no-shadow {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.single-border-top {
  border-top: 1px solid rgba(221, 221, 221, 0.3);
}

.single-border {
  border: 1px solid rgba(221, 221, 221, 0.5);
}

.color-light {
  color: var(--light-color) !important;
}

.color-extra-light {
  color: var(--extra-light-color) !important;
}

.color-heading {
  color: var(--heading-color);
}

.ff-jost {
  font-family: var(--jost-font) !important;
}

.ff-manrope {
  font-family: var(--manrope-font) !important;
}

.ff-roboto-slab {
  font-family: var(--roboto-slab-font) !important;
}

.section-bg-1 {
  background-color: var(--section-bg-1);
}

.section-bg-2 {
  background-color: var(--section-bg-2);
}

.section-bg-3 {
  background-color: var(--section-bg-3);
}

.section-bg-4 {
  background-color: var(--section-bg-4);
}

.section-bg-5 {
  background-color: var(--section-bg-5);
}

.section-bg-6 {
  background-color: var(--section-bg-6);
}

.color-one {
  color: var(--main-color-one);
}

.color-two {
  color: var(--main-color-two);
}

.color-three {
  color: var(--main-color-three);
}

.color-four {
  color: var(--main-color-four);
}

.color-five {
  color: var(--main-color-five);
}

.color-stock {
  color: var(--stock-color);
}

.review-color {
  color: var(--review-color);
}

.color-yellow {
  color: #326DE4;
}

.footer-bg {
  background: #f9f9f9;
}

.footer-bg-2 {
  background: #22232F;
}

.footer-bg-3 {
  background: #F7F7F6;
}

.shop-color-1 {
  background: #1A85ED !important;
}

.shop-color-2 {
  background: #30BB6F !important;
}

.shop-color-3 {
  background: #AB47BC !important;
}

.shop-color-4 {
  background: #326DE4 !important;
}

.shop-color-5 {
  background: #040B25 !important;
}

.shop-color-6 {
  background: #FF9800 !important;
}

.shop-color-7 {
  background: #1A85ED !important;
}

.brand-bg-1 {
  background-color: #ED1C24;
}

.brand-bg-2 {
  background-color: #1B1B1B;
}

.brand-bg-3 {
  background-color: #F65B65;
}

.brand-bg-4 {
  background-color: #0088DD;
}

.brand-bg-5 {
  background-color: #326DE4;
}

.brand-bg-6 {
  background-color: #5AB27E;
}

.bg-color-new {
  background: var(--new-color);
}

.facebook-bg {
  background-color: #3b5999 !important;
}

.twitter-bg {
  background-color: #55acee !important;
}

.pintarest-bg {
  background-color: #c40014 !important;
}

.youtube-bg {
  background-color: #ff1544 !important;
}

.instagram-bg {
  background: -webkit-gradient(linear, left bottom, left top, from(#326DE4), color-stop(#1A85ED), color-stop(#1A85ED), color-stop(#ff575f), color-stop(#ff3e71), color-stop(#fa3080), color-stop(#f12690), color-stop(#e523a0), color-stop(#d12dac), color-stop(#bb37b7), color-stop(#a140bf), to(#8347c5)) !important;
  background: linear-gradient(to top, #326DE4, #1A85ED, #1A85ED, #ff575f, #ff3e71, #fa3080, #f12690, #e523a0, #d12dac, #bb37b7, #a140bf, #8347c5) !important;
}

.linkedin-bg {
  background-color: #326DE4 !important;
}

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

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

.no-margin {
  margin: 0;
}

.lazyloads {
  display: block;
}

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

.desktop-reverse-margin-24 {
  margin: -24px 0 0;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .desktop-reverse-margin-24 {
    margin: unset;
  }
}

.border-1 {
  border: 1px solid rgba(221, 221, 221, 0.5);
}
.border-1.border-2px {
  border: 2px solid rgba(221, 221, 221, 0.5);
}
.border-1.border-3px {
  border: 3px solid rgba(221, 221, 221, 0.5);
}
.border-1.border-4px {
  border: 4px solid rgba(221, 221, 221, 0.5);
}
.border-1.border-5px {
  border: 5px solid rgba(221, 221, 221, 0.5);
}

.heading-title {
  font-size: 30px;
  line-height: 36px;
}
.heading-title:hover {
  color: var(--main-color-one);
}
.heading-title.hover-color-two:hover {
  color: var(--main-color-two);
}
.heading-title.hover-color-three:hover {
  color: var(--main-color-three);
}
.heading-title.hover-color-four:hover {
  color: var(--main-color-four);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .heading-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 375px) {
  .heading-title {
    font-size: 24px;
  }
}

.common-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  color: var(--heading-color-home-19);
}
@media only screen and (max-width: 767.98px) {
  .common-title {
    font-size: 22px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 480px) {
  .common-title {
    font-size: 21px;
  }
}
@media only screen and (max-width: 375px) {
  .common-title {
    font-size: 20px;
  }
}
.common-title.white-color {
  color: #fff;
}
.common-title:hover {
  color: var(--main-color-one);
}
.common-title.hover-color-two:hover {
  color: var(--main-color-two);
}
.common-title.hover-color-three:hover {
  color: var(--main-color-three);
}
.common-title.hover-color-four:hover {
  color: var(--main-color-four);
}

.white-color {
  color: #fff;
}

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

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

.common-title-two {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}
.common-title-two.white-color {
  color: #fff;
}
.common-title-two:hover {
  color: var(--main-color-one);
}
.common-title-two.hover-color-two:hover {
  color: var(--main-color-two);
}
.common-title-two.hover-color-three:hover {
  color: var(--main-color-three);
}
.common-title-two.hover-color-four:hover {
  color: var(--main-color-four);
}

.common-title-three {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}
.common-title-three.white-color {
  color: #fff;
}
.common-title-three:hover {
  color: var(--main-color-one);
}
.common-title-three.hover-color-two:hover {
  color: var(--main-color-two);
}
.common-title-three.hover-color-three:hover {
  color: var(--main-color-three);
}
.common-title-three.hover-color-four:hover {
  color: var(--main-color-four);
}

.common-para {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--extra-light-color);
}
.common-para.white-color {
  color: #fff;
}

.common-price-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 40px;
}
.common-price-title.white-color {
  color: #fff;
}

.common-price-title-two {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}
.common-price-title-two.white-color {
  color: #fff;
}

.tab-content-item {
  display: none;
}

.tab-content-item.active {
  display: block;
  -webkit-animation: 1s fade-effects;
          animation: 1s fade-effects;
}

@-webkit-keyframes fade-effects {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes fade-effects {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.slider-inner-margin .slick-slide {
  margin: 12px;
}
.slider-inner-margin .slick-list {
  margin: -12px;
}

.slider-inner-margin-10 .slick-slide {
  margin: 5px;
}
.slider-inner-margin-10 .slick-list {
  margin: -5px;
}

.slick-slider-items.margin-reverse-24 {
  margin: -24px 0 0;
}

.global-slick-init:hover.nav-style-three .prev-icon,
.global-slick-init:hover.nav-style-three .next-icon {
  visibility: visible;
  opacity: 1;
}
.global-slick-init.nav-style-three .prev-icon,
.global-slick-init.nav-style-three .next-icon {
  visibility: hidden;
  opacity: 0;
}

.nav-style-banner .prev-icon,
.nav-style-banner .next-icon {
  position: absolute;
  right: 50px;
  bottom: 250px;
  font-size: 22px;
  cursor: pointer;
  z-index: 99;
  background: none;
  color: var(--heading-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.nav-style-banner .prev-icon:hover,
.nav-style-banner .next-icon:hover {
  color: var(--main-color-four);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .nav-style-banner .prev-icon,
.nav-style-banner .next-icon {
    background-color: #fff;
    padding: 0 5px;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    bottom: unset;
  }
}
@media only screen and (max-width: 575.98px) {
  .nav-style-banner .prev-icon,
.nav-style-banner .next-icon {
    top: auto;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    bottom: 60px;
    -webkit-transition: 300ms;
    transition: 300ms;
  }
}
.nav-style-banner .prev-icon {
  right: 80px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .nav-style-banner .prev-icon {
    right: auto;
    left: 20px;
  }
}

.append-feedback,
.append-team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.append-feedback.append-color-one .prev-icon:hover,
.append-feedback.append-color-one .next-icon:hover,
.append-team.append-color-one .prev-icon:hover,
.append-team.append-color-one .next-icon:hover {
  border-color: var(--main-color-one);
  color: var(--main-color-one);
}
.append-feedback.append-color-three .prev-icon:hover,
.append-feedback.append-color-three .next-icon:hover,
.append-team.append-color-three .prev-icon:hover,
.append-team.append-color-three .next-icon:hover {
  border-color: var(--main-color-one);
  color: var(--main-color-one);
}
.append-feedback .prev-icon,
.append-feedback .next-icon,
.append-team .prev-icon,
.append-team .next-icon {
  font-size: 30px;
  cursor: pointer;
  border: 1px solid #DDD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  width: 50px;
  font-size: 22px;
  z-index: 9;
  color: var(--heading-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.append-feedback .prev-icon:hover,
.append-feedback .next-icon:hover,
.append-team .prev-icon:hover,
.append-team .next-icon:hover {
  border-color: var(--main-color-two);
  color: var(--main-color-two);
}
.append-feedback .prev-icon,
.append-team .prev-icon {
  right: 55px;
}

.append-nav-one .prev-icon,
.append-nav-one .next-icon,
.append-nav-two .prev-icon,
.append-nav-two .next-icon,
.append-nav-three .prev-icon,
.append-nav-three .next-icon {
  position: absolute;
  right: 45px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 24px;
  cursor: pointer;
  z-index: 9;
  background: none;
  color: var(--heading-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.append-nav-one .prev-icon:hover,
.append-nav-one .next-icon:hover,
.append-nav-two .prev-icon:hover,
.append-nav-two .next-icon:hover,
.append-nav-three .prev-icon:hover,
.append-nav-three .next-icon:hover {
  color: var(--main-color-one);
}
.append-nav-one .next-icon,
.append-nav-two .next-icon,
.append-nav-three .next-icon {
  left: auto;
  right: 15px;
}

.append-featured,
.append-flash,
.append-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.append-featured.append-color-one .prev-icon:hover,
.append-featured.append-color-one .next-icon:hover,
.append-flash.append-color-one .prev-icon:hover,
.append-flash.append-color-one .next-icon:hover,
.append-blog.append-color-one .prev-icon:hover,
.append-blog.append-color-one .next-icon:hover {
  border-color: var(--main-color-one);
  color: var(--main-color-one);
}
.append-featured.append-color-three .prev-icon:hover,
.append-featured.append-color-three .next-icon:hover,
.append-flash.append-color-three .prev-icon:hover,
.append-flash.append-color-three .next-icon:hover,
.append-blog.append-color-three .prev-icon:hover,
.append-blog.append-color-three .next-icon:hover {
  border-color: var(--main-color-one);
  color: var(--main-color-one);
}
.append-featured .prev-icon,
.append-featured .next-icon,
.append-flash .prev-icon,
.append-flash .next-icon,
.append-blog .prev-icon,
.append-blog .next-icon {
  font-size: 30px;
  cursor: pointer;
  border: 1px solid #DDD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  width: 50px;
  font-size: 22px;
  z-index: 9;
  color: var(--heading-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.append-featured .prev-icon:hover,
.append-featured .next-icon:hover,
.append-flash .prev-icon:hover,
.append-flash .next-icon:hover,
.append-blog .prev-icon:hover,
.append-blog .next-icon:hover {
  border-color: var(--main-color-two);
  color: var(--main-color-two);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .append-featured .prev-icon,
.append-featured .next-icon,
.append-flash .prev-icon,
.append-flash .next-icon,
.append-blog .prev-icon,
.append-blog .next-icon {
    height: 40px;
    width: 40px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .append-featured .prev-icon,
.append-featured .next-icon,
.append-flash .prev-icon,
.append-flash .next-icon,
.append-blog .prev-icon,
.append-blog .next-icon {
    height: 35px;
    width: 35px;
    font-size: 18px;
  }
}
.append-featured .prev-icon,
.append-flash .prev-icon,
.append-blog .prev-icon {
  right: 55px;
}

.nav-style-two {
  position: relative;
}
.nav-style-two.nav-color-two .prev-icon,
.nav-style-two.nav-color-two .next-icon {
  background: var(--main-color-two);
}
.nav-style-two.nav-color-two .prev-icon:hover,
.nav-style-two.nav-color-two .next-icon:hover {
  color: var(--main-color-two);
}
.nav-style-two.nav-color-three .prev-icon,
.nav-style-two.nav-color-three .next-icon {
  background: var(--main-color-three);
}
.nav-style-two.nav-color-three .prev-icon:hover,
.nav-style-two.nav-color-three .next-icon:hover {
  color: var(--main-color-three);
}
.nav-style-two.nav-color-four .prev-icon:hover,
.nav-style-two.nav-color-four .next-icon:hover {
  color: var(--main-color-four);
}
.nav-style-two .prev-icon,
.nav-style-two .next-icon {
  position: absolute;
  right: 35px;
  top: -78px;
  font-size: 30px;
  cursor: pointer;
  z-index: 9;
  background: none;
  color: var(--heading-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.nav-style-two .prev-icon:hover,
.nav-style-two .next-icon:hover {
  color: var(--main-color-one);
}
.nav-style-two .next-icon {
  left: auto;
  right: 5px;
}

.nav-style-one {
  position: relative;
}
.nav-style-one.nav-color-two .prev-icon:hover,
.nav-style-one.nav-color-two .next-icon:hover {
  color: var(--main-color-two);
  border-color: var(--main-color-two);
}
.nav-style-one.nav-color-three .prev-icon:hover,
.nav-style-one.nav-color-three .next-icon:hover {
  color: var(--main-color-three);
  border-color: var(--main-color-three);
}
.nav-style-one:hover .prev-icon,
.nav-style-one:hover .next-icon {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%) rotateY(0deg);
          transform: translateY(-50%) rotateY(0deg);
}
.nav-style-one .prev-icon,
.nav-style-one .next-icon {
  position: absolute;
  right: -25px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotateY(180deg);
          transform: translateY(-50%) rotateY(180deg);
  font-size: 24px;
  cursor: pointer;
  z-index: 9;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  -webkit-transition: 300ms;
  transition: 300ms;
  visibility: hidden;
  opacity: 0;
}
.nav-style-one .prev-icon:hover,
.nav-style-one .next-icon:hover {
  color: var(--main-color-one);
  border-color: var(--main-color-one);
}
@media (min-width: 1200px) and (max-width: 1880px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    right: -20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    right: -20px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    right: -20px;
  }
}
@media only screen and (max-width: 575.98px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    right: 0;
    padding: 5px;
    text-align: center;
  }
}
.nav-style-one .prev-icon {
  right: auto;
  left: -20px;
}
@media (min-width: 1200px) and (max-width: 1880px) {
  .nav-style-one .prev-icon {
    left: -20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .nav-style-one .prev-icon {
    left: -20px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .nav-style-one .prev-icon {
    left: -20px;
  }
}
@media only screen and (max-width: 575.98px) {
  .nav-style-one .prev-icon {
    left: 0;
  }
}

.dot-style-one.banner-dots .slick-dots li {
  height: 5px;
  width: 20px;
  display: block;
  border-radius: 0;
}
.dot-style-one.banner-dots .slick-dots li.slick-active {
  width: 40px;
  height: 5px;
}
.dot-style-one.banner-dots.dot-color-two .slick-dots li {
  background: #DDD;
}
.dot-style-one.banner-dots.dot-color-two .slick-dots li.slick-active {
  background: var(--main-color-two);
}
.dot-style-one.banner-dots.dot-color-three .slick-dots li.slick-active {
  background: var(--main-color-three);
}
.dot-style-one.dot-absolute .slick-dots {
  position: absolute;
  bottom: 30px;
  right: 0px;
}
@media only screen and (max-width: 480px) {
  .dot-style-one.dot-absolute .slick-dots {
    bottom: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .dot-style-one.dot-absolute .slick-dots {
    bottom: 10px;
  }
}
.dot-style-one.dot-style-two .slick-dots li {
  height: 5px;
  width: 12px;
  border-radius: 0;
}
.dot-style-one.dot-style-two .slick-dots li.slick-active {
  background: var(--main-color-one);
  width: 35px;
  border-radius: 2px;
}
.dot-style-one.dot-style-three .slick-dots li {
  border-radius: 0;
}
.dot-style-one.dot-color-two .slick-dots li {
  background-color: #DDD;
}
.dot-style-one.dot-color-two .slick-dots li.slick-active {
  background: var(--main-color-two);
}
.dot-style-one.dot-color-three .slick-dots li.slick-active {
  background: var(--main-color-three);
}
.dot-style-one.dot-color-four .slick-dots li.slick-active {
  background: var(--main-color-four);
}
.dot-style-one .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  padding: 10px 0 0;
}
.dot-style-one .slick-dots li {
  text-indent: -9999px;
  height: 10px;
  width: 10px;
  background: #DDD;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.dot-style-one .slick-dots li.slick-active {
  background: var(--main-color-one);
}
.dot-style-one .slick-dots li button {
  border: 0;
  outline: none;
}

.body-overlay-desktop {
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 100%;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.body-overlay-desktop.active {
  visibility: visible;
  opacity: 1;
  z-index: 9;
  left: 0;
}

.btn-wrapper button {
  outline: none;
}
.btn-wrapper button:focus {
  outline: none;
}

@media (min-width: 300px) and (max-width: 991.98px) {
  section.promo-area.padding-top-10 {
    padding-top: 0 !important;
  }
}

@media (max-width: 991px) and (min-width: 320px) {
  .row.margin-top-65 {
    margin-top: 45px !important;
  }

  .row.margin-top-40 {
    margin-top: 20px !important;
  }

  .row.margin-top-10 {
    margin-top: 0px !important;
  }

  .col-lg-12.margin-top-10 {
    margin-top: 0px !important;
  }

  .btn-wrapper.margin-top-50 {
    margin-top: 30px !important;
  }
}
/*--------------------------------------------------------------
# Custom Container
--------------------------------------------------------------*/
.container-one,
.container-two,
.container-three {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container,
.container-sm {
    max-width: 540px;
  }

  .container-one {
    max-width: 540px;
  }

  .container-two {
    max-width: 540px;
  }

  .container-three {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container,
.container-md,
.container-sm {
    max-width: 720px;
  }

  .container-one {
    max-width: 720px;
  }

  .container-two {
    max-width: 720px;
  }

  .container-three {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container,
.container-lg,
.container-md,
.container-sm {
    max-width: 960px;
  }

  .container-one {
    max-width: 960px;
  }

  .container-two {
    max-width: 960px;
  }

  .container-three {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    max-width: 1140px;
  }

  .container-one {
    max-width: 1140px;
  }

  .container-two {
    max-width: 1140px;
  }

  .container-three {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1320px;
  }

  .container-one {
    max-width: 1320px;
  }

  .container-two {
    max-width: 1320px;
  }

  .container-three {
    max-width: 1320px;
  }
}
@media (min-width: 1600px) {
  .container-one {
    max-width: 1540px;
  }

  .container-two {
    max-width: 1540px;
  }

  .container-three {
    max-width: 1540px;
  }
}
@media (min-width: 1800px) {
  .container-one {
    max-width: 1735px;
  }

  .container-two {
    max-width: 1735px;
  }
}
/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/
.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-17 {
  font-size: 17px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-19 {
  font-size: 19px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-25 {
  font-size: 25px !important;
}

.fs-26 {
  font-size: 26px !important;
}

.fs-27 {
  font-size: 27px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fs-30 {
  font-size: 30px !important;
}

.fs-32 {
  font-size: 32px !important;
}

.fs-36 {
  font-size: 36px !important;
}

.fs-46 {
  font-size: 46px !important;
}

.fs-65 {
  font-size: 65px !important;
}

.padding-left-50 {
  padding-left: 50px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .padding-left-50 {
    padding-left: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .padding-left-50 {
    padding-left: 0;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-left-50 {
    padding-left: 0;
  }
}

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

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

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

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

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

.padding-top-40 {
  padding-top: 40px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-top-40 {
    padding-top: 30px !important;
  }
}

.padding-top-45 {
  padding-top: 45px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-top-45 {
    padding-top: 30px !important;
  }
}

.padding-top-55 {
  padding-top: 55px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-top-55 {
    padding-top: 40px !important;
  }
}

.padding-top-50 {
  padding-top: 50px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-top-50 {
    padding-top: 35px !important;
  }
}

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

.padding-top-65 {
  padding-top: 65px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-top-65 {
    padding-top: 35px !important;
  }
}

.padding-top-70 {
  padding-top: 70px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-top-70 {
    padding-top: 40px !important;
  }
}

.padding-top-75 {
  padding-top: 75px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-top-75 {
    padding-top: 45px !important;
  }
}

.padding-top-80 {
  padding-top: 80px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-top-80 {
    padding-top: 60px !important;
  }
}

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

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

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

.padding-top-100 {
  padding-top: 100px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-top-100 {
    padding-top: 70px !important;
  }
}

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

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

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

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

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

.padding-top-130 {
  padding-top: 130px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-top-130 {
    padding-top: 80px !important;
  }
}

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

.padding-top-140 {
  padding-top: 140px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-top-140 {
    padding-top: 80px !important;
  }
}

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

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

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

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

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

.padding-top-260 {
  padding-top: 260px;
}

.padding-top-300 {
  padding-top: 300px;
}

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

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

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

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

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

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

.padding-bottom-40 {
  padding-bottom: 40px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-bottom-40 {
    padding-bottom: 30px !important;
  }
}

.padding-bottom-45 {
  padding-bottom: 45px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-bottom-45 {
    padding-bottom: 30px !important;
  }
}

.padding-bottom-50 {
  padding-bottom: 50px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-bottom-50 {
    padding-bottom: 35px !important;
  }
}

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

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

.padding-bottom-65 {
  padding-bottom: 65px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-bottom-65 {
    padding-bottom: 40px !important;
  }
}

.padding-bottom-70 {
  padding-bottom: 70px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-bottom-70 {
    padding-bottom: 40px !important;
  }
}

.padding-bottom-75 {
  padding-bottom: 75px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-bottom-75 {
    padding-bottom: 45px !important;
  }
}

.padding-bottom-80 {
  padding-bottom: 80px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-bottom-80 {
    padding-bottom: 60px !important;
  }
}

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

.padding-bottom-90 {
  padding-bottom: 90px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-bottom-90 {
    padding-bottom: 60px !important;
  }
}

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

.padding-bottom-100 {
  padding-bottom: 100px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-bottom-100 {
    padding-bottom: 70px !important;
  }
}

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

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

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

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

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

.padding-bottom-130 {
  padding-bottom: 130px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-bottom-130 {
    padding-bottom: 80px !important;
  }
}

.padding-bottom-140 {
  padding-bottom: 140px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .padding-bottom-140 {
    padding-bottom: 80px !important;
  }
}

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

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

.padding-bottom-280 {
  padding-bottom: 280px;
}

.padding-bottom-285 {
  padding-bottom: 285px;
}

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

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

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

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

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

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

.padding-bottom-300 {
  padding-bottom: 300px;
}

.padding-bottom-460 {
  padding-bottom: 460px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.margin-bottom-0 {
  margin-bottom: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.min-height-600 {
  min-height: 600px;
}

.overflow-hidden {
  overflow: hidden;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Keyframes Animation
--------------------------------------------------------------*/
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-50px);
    transform: translatey(-50px);
  }
  100% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
}
@keyframes floating {
  0% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-50px);
    transform: translatey(-50px);
  }
  100% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
}
@-webkit-keyframes floating_rotate {
  0% {
    -webkit-transform: translatey(0px) rotate(0deg);
    transform: translatey(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translatey(-50px) rotateY(360deg);
    transform: translatey(-50px) rotateY(360deg);
  }
  100% {
    -webkit-transform: translatey(0px) rotate(0deg);
    transform: translatey(0px) rotate(0deg);
  }
}
@keyframes floating_rotate {
  0% {
    -webkit-transform: translatey(0px) rotate(0deg);
    transform: translatey(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translatey(-50px) rotateY(360deg);
    transform: translatey(-50px) rotateY(360deg);
  }
  100% {
    -webkit-transform: translatey(0px) rotate(0deg);
    transform: translatey(0px) rotate(0deg);
  }
}
@-webkit-keyframes floating_scale {
  0% {
    -webkit-transform: translatey(0px) scale(0.8);
    transform: translatey(0px) scale(0.8);
  }
  50% {
    -webkit-transform: translatey(-50px) scale(1.4);
    transform: translatey(-50px) scale(1.4);
  }
  100% {
    -webkit-transform: translatey(0px) scale(0.8);
    transform: translatey(0px) scale(0.8);
  }
}
@keyframes floating_scale {
  0% {
    -webkit-transform: translatey(0px) scale(0.8);
    transform: translatey(0px) scale(0.8);
  }
  50% {
    -webkit-transform: translatey(-50px) scale(1.4);
    transform: translatey(-50px) scale(1.4);
  }
  100% {
    -webkit-transform: translatey(0px) scale(0.8);
    transform: translatey(0px) scale(0.8);
  }
}
@-webkit-keyframes floating_long {
  0% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-150px);
    transform: translatey(-150px);
  }
  100% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
}
@keyframes floating_long {
  0% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-150px);
    transform: translatey(-150px);
  }
  100% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
}
@-webkit-keyframes floating_leftright {
  0% {
    -webkit-transform: translateX(-150px);
    transform: translateXS(-150px);
  }
  50% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(-150px);
    transform: translateX(-150px);
  }
}
@keyframes floating_leftright {
  0% {
    -webkit-transform: translateX(-150px);
    transform: translateXS(-150px);
  }
  50% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(-150px);
    transform: translateX(-150px);
  }
}
@-webkit-keyframes floating_leftright_rotateY {
  0% {
    -webkit-transform: translateX(-150px) rotateY(0deg);
    transform: translateXS(-150px) rotateY(0deg);
  }
  50% {
    -webkit-transform: translateX(0px) rotateY(180deg);
    transform: translateX(0px) rotateY(180deg);
  }
  100% {
    -webkit-transform: translateX(-150px) rotateY(0deg);
    transform: translateX(-150px) rotateY(0deg);
  }
}
@keyframes floating_leftright_rotateY {
  0% {
    -webkit-transform: translateX(-150px) rotateY(0deg);
    transform: translateXS(-150px) rotateY(0deg);
  }
  50% {
    -webkit-transform: translateX(0px) rotateY(180deg);
    transform: translateX(0px) rotateY(180deg);
  }
  100% {
    -webkit-transform: translateX(-150px) rotateY(0deg);
    transform: translateX(-150px) rotateY(0deg);
  }
}
@-webkit-keyframes floating_leftright_rotateX {
  0% {
    -webkit-transform: translateX(-150px) rotateX(0deg);
    transform: translateXS(-150px) rotateX(0deg);
  }
  50% {
    -webkit-transform: translateX(0px) rotateX(180deg);
    transform: translateX(0px) rotateX(180deg);
  }
  100% {
    -webkit-transform: translateX(-150px) rotateX(0deg);
    transform: translateX(-150px) rotateX(0deg);
  }
}
@keyframes floating_leftright_rotateX {
  0% {
    -webkit-transform: translateX(-150px) rotateX(0deg);
    transform: translateXS(-150px) rotateX(0deg);
  }
  50% {
    -webkit-transform: translateX(0px) rotateX(180deg);
    transform: translateX(0px) rotateX(180deg);
  }
  100% {
    -webkit-transform: translateX(-150px) rotateX(0deg);
    transform: translateX(-150px) rotateX(0deg);
  }
}
@-webkit-keyframes scaleupdown {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes scaleupdown {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@-webkit-keyframes round-moving {
  from {
    -webkit-transform: rotate(0deg) translateX(120px) rotate(0deg);
            transform: rotate(0deg) translateX(120px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translateX(120px) rotate(-360deg);
            transform: rotate(360deg) translateX(120px) rotate(-360deg);
  }
}
@keyframes round-moving {
  from {
    -webkit-transform: rotate(0deg) translateX(120px) rotate(0deg);
            transform: rotate(0deg) translateX(120px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translateX(120px) rotate(-360deg);
            transform: rotate(360deg) translateX(120px) rotate(-360deg);
  }
}
@-webkit-keyframes round-moving2 {
  from {
    -webkit-transform: rotate(0deg) translateX(60px) rotate(0deg);
            transform: rotate(0deg) translateX(60px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translateX(60px) rotate(-360deg);
            transform: rotate(360deg) translateX(60px) rotate(-360deg);
  }
}
@keyframes round-moving2 {
  from {
    -webkit-transform: rotate(0deg) translateX(60px) rotate(0deg);
            transform: rotate(0deg) translateX(60px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translateX(60px) rotate(-360deg);
            transform: rotate(360deg) translateX(60px) rotate(-360deg);
  }
}
@-webkit-keyframes pulsing {
  0% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
@keyframes pulsing {
  0% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
@-webkit-keyframes wave {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: -500px 0;
  }
  100% {
    background-position: 500px 0;
  }
}
@keyframes wave {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: -500px 0;
  }
  100% {
    background-position: 500px 0;
  }
}
.navbar-area {
  padding: 20px 0;
}

/* banner Theme Two */
.slick-active .banner-image-content-title {
  -webkit-animation: flipInX 2s 1s both;
  animation: flipInX 2s 1s both;
}
.slick-active .banner-image-content-para {
  -webkit-animation: fadeInUp 1s 1s both;
  animation: fadeInUp 2s 1s both;
}
.slick-active .banner-image-content .btn-wrapper .cmn-btn {
  -webkit-animation: zoomIn 1s 0.8s both;
  animation: zoomIn 1s 0.8s both;
}
.slick-active .banner-image-thumb img {
  -webkit-animation: zoomIn 2s 1s both;
  animation: zoomIn 2s 1s both;
}

.theme-two-banner-padding {
  padding: 220px 0 150px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .theme-two-banner-padding {
    padding: 190px 0 100px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .theme-two-banner-padding {
    padding: 170px 0 100px;
  }
}
@media only screen and (max-width: 575.98px) {
  .theme-two-banner-padding {
    padding: 140px 0 100px;
  }
}
@media only screen and (max-width: 375px) {
  .theme-two-banner-padding {
    padding: 110px 0 70px;
  }
}

.banner-content-wrapper {
  position: relative;
  z-index: 2;
}
.banner-content-wrapper .banner-image {
  position: relative;
  z-index: 2;
}
.banner-content-wrapper .banner-image-content {
  max-width: 750px;
  padding: 50px 0 50px 120px;
  position: relative;
  z-index: 5;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .banner-content-wrapper .banner-image-content {
    padding: 40px 0 40px 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-content-wrapper .banner-image-content {
    padding: 30px 0 30px 40px;
    max-width: 450px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-content-wrapper .banner-image-content {
    padding: 30px 0 30px 40px;
    max-width: 450px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .banner-content-wrapper .banner-image-content {
    padding: 20px 0 0px 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-content-wrapper .banner-image-content {
    padding: 20px 0 0px 20px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-content-wrapper .banner-image-content {
    padding: 20px 0 0px 10px;
  }
}
.banner-content-wrapper .banner-image-content-title {
  font-size: 80px;
  line-height: 85px;
  font-weight: 500;
  margin: -10px 0 0;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner-content-wrapper .banner-image-content-title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-content-wrapper .banner-image-content-title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .banner-content-wrapper .banner-image-content-title {
    font-size: 42px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 575.98px) {
  .banner-content-wrapper .banner-image-content-title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 480px) {
  .banner-content-wrapper .banner-image-content-title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-content-wrapper .banner-image-content-title {
    font-size: 28px;
  }
}
.banner-content-wrapper .banner-image-content-title:hover {
  color: var(--main-color-three);
}
.banner-content-wrapper .banner-image-content-para {
  font-size: 20px;
  color: var(--light-color);
  font-weight: 400;
  line-height: 28px;
}
@media only screen and (max-width: 480px) {
  .banner-content-wrapper .banner-image-content-para {
    font-size: 16px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 375px) {
  .banner-content-wrapper .banner-image-content-para {
    font-size: 15px;
  }
}

.theme-two .nav-style-one .prev-icon:hover,
.theme-two .nav-style-one .next-icon:hover {
  background-color: var(--main-color-three);
  color: #fff;
  border-color: var(--main-color-three);
}
.theme-two .slick-active .banner-image-content-title {
  -webkit-animation: flipInX 2s 1s both;
  animation: flipInX 2s 1s both;
}
.theme-two .slick-active .banner-image-content-para {
  -webkit-animation: fadeInUp 2s 1s both;
  animation: fadeInUp 2s 1s both;
}
.theme-two .slick-active .banner-image-content .btn-wrapper .cmn-btn {
  -webkit-animation: zoomIn 1s 0.8s both;
  animation: zoomIn 1s 0.8s both;
}
.theme-two .slick-active .banner-image-thumb img {
  -webkit-animation: zoomIn 1.5s 2s both;
  animation: zoomIn 1.5s 2s both;
}

.theme-three .nav-style-one .prev-icon:hover,
.theme-three .nav-style-one .next-icon:hover {
  background-color: var(--main-color-four);
  color: #fff;
  border-color: var(--main-color-four);
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .theme-three .banner-content-wrapper {
    padding: 70px 0 90px;
  }
}
.theme-three .banner-content-wrapper .banner-image-content {
  padding: 70px 0 70px 120px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .theme-three .banner-content-wrapper .banner-image-content {
    padding: 100px 0 100px 90px;
    max-width: 100%;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .theme-three .banner-content-wrapper .banner-image-content {
    padding: 100px 0 100px 60px;
    max-width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .theme-three .banner-content-wrapper .banner-image-content {
    padding: 100px 0 100px 50px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .theme-three .banner-content-wrapper .banner-image-content {
    padding: 30px 30px 0 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  .theme-three .banner-content-wrapper .banner-image-content {
    padding: 30px 20px 0 20px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .theme-three .banner-content-wrapper .banner-image-content-title {
    font-size: 65px;
    line-height: 70px;
  }
}
.theme-three .banner-content-wrapper .banner-image-content-title-span {
  color: var(--main-color-four);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.theme-three .banner-content-wrapper .banner-image-content-title:hover {
  color: var(--main-color-four);
}
.theme-three .banner-content-wrapper .banner-image-content-title:hover .banner-image-content-title-span {
  color: var(--heading-color);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .theme-three .banner-content-wrapper .banner-image-content-para {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .theme-three .banner-content-wrapper .banner-image-content-para {
    font-size: 18px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .theme-three .banner-content-wrapper .banner-image-content-para {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575.98px) {
  .theme-three .banner-content-wrapper .banner-image-content-para {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .theme-three .banner-content-wrapper .banner-image-content-para {
    font-size: 15px;
  }
}
.theme-three .slick-active .banner-image-content-title {
  -webkit-animation: flipInX 2s 1s both;
  animation: flipInX 2s 1s both;
}
.theme-three .slick-active .banner-image-content-para {
  -webkit-animation: fadeInUp 2s 1s both;
  animation: fadeInUp 2s 1s both;
}
.theme-three .slick-active .banner-image-content .btn-wrapper .cmn-btn {
  -webkit-animation: zoomIn 1s 0.8s both;
  animation: zoomIn 1s 0.8s both;
}
.theme-three .slick-active .banner-image-thumb img {
  -webkit-animation: zoomIn 1.5s 2s both;
  animation: zoomIn 1.5s 2s both;
}

/* Single Collection Themes */
.collection-padding {
  padding: 30px 80px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .collection-padding {
    padding: 30px 40px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .collection-padding {
    padding: 30px 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .collection-padding {
    padding: 30px 30px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .collection-padding {
    padding: 30px 40px;
  }
}
@media only screen and (max-width: 767.98px) {
  .collection-padding {
    padding: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .collection-padding {
    padding: 20px;
  }
}

.single-collection-two {
  height: 100%;
}
.single-collection-two-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px 24px;
}
@media only screen and (max-width: 575.98px) {
  .single-collection-two-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.single-collection-two-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.single-collection-two-contents-title {
  font-size: 48px;
  line-height: 60px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-collection-two-contents-title {
    font-size: 42px;
    line-height: 48px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-collection-two-contents-title {
    font-size: 36px;
    line-height: 45px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .single-collection-two-contents-title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-collection-two-contents-title {
    font-size: 32px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 375px) {
  .single-collection-two-contents-title {
    font-size: 28px;
    line-height: 36px;
  }
}
.single-collection-two-contents-title-block {
  display: block;
}
.single-collection-two-thumb {
  max-width: 320px;
}

@media (min-width: 1600px) and (max-width: 1849.98px) {
  .theme-three .collection-padding {
    padding: 30px 50px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .theme-three .collection-padding {
    padding: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .theme-three .collection-padding {
    padding: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .theme-three .collection-padding {
    padding: 30px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .theme-three .collection-padding {
    padding: 50px 30px;
  }
}
@media only screen and (max-width: 480px) {
  .theme-three .collection-padding {
    padding: 50px 20px;
  }
}
.theme-three .single-collection-two-flex {
  gap: 10px;
}
.theme-three .single-collection-two-thumb {
  max-width: 450px;
}
@media (min-width: 1600px) and (max-width: 1849.98px) {
  .theme-three .single-collection-two-thumb {
    max-width: 400px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .theme-three .single-collection-two-thumb {
    max-width: 320px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .theme-three .single-collection-two-thumb {
    max-width: 300px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .theme-three .single-collection-two-thumb {
    max-width: 280px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .theme-three .single-collection-two-contents-title {
    font-size: 42px;
    line-height: 48px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .theme-three .single-collection-two-contents-title {
    font-size: 36px;
    line-height: 48px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .theme-three .single-collection-two-contents-title {
    font-size: 36px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 575.98px) {
  .theme-three .single-collection-two-flex.flex-row-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
}
.theme-three .shop-now-btn:hover {
  color: var(--main-color-four);
}
.theme-three .shop-now-btn:hover.shop-now-border::before {
  width: 100%;
  background-color: var(--main-color-four);
}

/* Theme One Blog */
.single-blog-two:hover .single-blog-two-thumbs img {
  /* IE 9 */
  -webkit-transform: scaleY(1.2) rotate(5deg);
  /* Chrome, Safari, Opera */
  transform: scaleY(1.2) rotate(5deg);
}
.single-blog-two-thumbs {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.single-blog-two-thumbs img {
  -webkit-transition: 300ms;
  transition: 300ms;
}
.single-blog-two-thumbs-date {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 9;
  background-color: var(--main-color-two);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  padding: 5px 15px;
}
.single-blog-two-thumbs-date a {
  display: block;
  text-align: center;
}
.single-blog-two-thumbs-date .date {
  border-bottom: 1px solid #fff;
  display: block;
}
.single-blog-two-contents-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .single-blog-two-contents-title {
    font-size: 22px;
    line-height: 28px;
  }
}
.single-blog-two-contents-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-blog-two-contents-tags-item {
  font-size: 16px;
  color: var(--extra-light-color);
  position: relative;
}
.single-blog-two-contents-tags-item i {
  color: var(--main-color-two);
}
.single-blog-two-contents-tags-item a:hover {
  color: var(--main-color-two);
}
.single-blog-two-contents-tags-item:not(:last-child) {
  padding-right: 20px;
}
.single-blog-two-contents-tags-item:not(:first-child) {
  padding-left: 20px;
}
.single-blog-two-contents-tags-item:not(:first-child)::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  background-color: var(--main-color-two);
  border-radius: 50%;
  top: 50%;
  left: -5px;
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
}

.flex-blog-height {
  width: 580px;
  height: 420px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .flex-blog-height {
    width: 400px;
    height: 300px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .flex-blog-height {
    width: 320px;
    height: 280px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .flex-blog-height {
    width: 250px;
    height: 290px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .flex-blog-height {
    width: 250px;
    height: 290px;
  }
}
@media only screen and (max-width: 375px) {
  .flex-blog-height {
    width: 100%;
  }
}

.flex-blog-height-two {
  width: 400px;
  height: 350px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .flex-blog-height-two {
    width: 220px;
    height: 320px;
  }
}
@media only screen and (max-width: 480px) {
  .flex-blog-height-two {
    width: 100%;
  }
}

.single-flex-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-flex-blog {
    gap: 15px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .single-flex-blog {
    gap: 15px;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-flex-blog {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: block !important;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-flex-blog.style-02 {
    gap: 20px;
  }
}
.single-flex-blog.style-02 .single-flex-blog-contents-title {
  font-size: 26px;
  line-height: 36px;
}
@media only screen and (max-width: 480px) {
  .single-flex-blog.style-02 .single-flex-blog-contents-title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767.98px) {
  .single-flex-blog.style-02 {
    display: block;
  }
}
@media only screen and (max-width: 767.98px) {
  .single-flex-blog.style-02 .single-flex-blog-thumbs {
    margin-bottom: 20px;
    margin: 0 0 30px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-flex-blog.style-02 .single-flex-blog-contents-para {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
  }
}
@media only screen and (max-width: 575.98px) {
  .single-flex-blog-thumbs {
    margin-bottom: 20px;
    margin: 0 0 30px;
  }
}
.single-flex-blog-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.single-flex-blog-contents-dates {
  font-size: 16px;
  color: var(--extra-light-color);
  line-height: 28px;
}
.single-flex-blog-contents-title {
  font-size: 36px;
  line-height: 42px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single-flex-blog-contents-title {
    font-size: 28px;
    line-height: 32px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-flex-blog-contents-title {
    font-size: 28px;
    line-height: 32px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-flex-blog-contents-title {
    font-size: 26px;
    line-height: 32px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .single-flex-blog-contents-title {
    font-size: 26px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 767.98px) {
  .single-flex-blog-contents-title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
  }
}
@media only screen and (max-width: 480px) {
  .single-flex-blog-contents-title {
    font-size: 24px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single-flex-blog-contents-para {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-flex-blog-contents-para {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .single-flex-blog-contents-para {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
  }
}
.global-card-thumb a{
    display: inline-block;
    max-height: 344px;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1/1;
}
.signle-collection .collction-thumb a {
    max-height: 300px;
    display: block;
    aspect-ratio: 1/1;
    width: 100%;
}
.details-small-product {
    height: 110px;
    width: 105px;
}
.payment-list {
    gap: 5px;
    flex-wrap: wrap;
}
li.single-list {
    max-width: 60px;
}


.name_badge{
    justify-content: space-between;
}
.wishlist-compare .wishlist-compare-btn .btn-wishlist .icon{
    background: transparent;
}
.wishlist-compare .wishlist-compare-btn .btn-wishlist .icon i{
    color: var(--main-color-one);
    font-size: 25px;
}

.social_share_parent ul{
    gap: 10px;
}
.social_share_parent ul li a{
    color: #ffffff;
    padding: 10px;
}
.social_share_parent ul li a.facebook{
    background: #4267B2;
}
.social_share_parent ul li a.twitter{
    background: #1DA1F2;
}
.social_share_parent ul li a.linkedin{
    background: #0072b1;
}
.social_share_parent ul li a.pinterest{
    background: #E60023;
}

/* Common footer css */
.footer-logo img {
    max-width: 250px;
}
.footer-widget .footer-inner .payment-list li img {
    height: auto;
    max-width: 50px;
}
.footer-widget .footer-inner .payment-list {
    gap: 10px;
    overflow-x: auto;
    max-width: 100%;
    width: 100%;
}
.footer-social-two {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.size-lists li.disabled { opacity: .4; cursor: not-allowed; pointer-events: none; }

/* Custom Widget CSS extracted from Blade files */

    .mc-hero-section {
        background-color: var(--section-bg-6, #EAF2F8); /* Light blue tint matching the design */
        width: 100%;
        position: relative;
        overflow-x: hidden;
    }

    .mc-hero-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 500px;
        padding: 40px 0;
        gap: 40px;
    }

    .mc-hero-content {
        flex: 1;
        max-width: 500px;
    }

    .mc-hero-eyebrow {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--main-color-one, #1A85ED);
        margin-bottom: 14px;
    }

    .mc-hero-heading {
        font-family: 'Roboto', 'Inter', sans-serif;
        font-size: clamp(2rem, 3.5vw, 3rem);
        font-weight: 700;
        line-height: 1.15;
        margin-bottom: 24px;
        letter-spacing: -0.5px;
        display: block;
        overflow: visible;
        -webkit-line-clamp: unset;
        text-overflow: unset;
    }

    .mc-hero-heading .text-black {
        color: #333333;
    }

    .mc-hero-heading .text-blue {
        color: var(--main-color-one, #1A85ED); /* Vibrant blue from the design */
    }

    .mc-hero-description {
        font-size: 16px;
        color: #666666;
        line-height: 1.6;
        margin-bottom: 35px;
        font-weight: 400;
    }

    .mc-hero-btn-wrapper {
        margin-top: 10px;
    }

    .mc-btn-primary {
        display: inline-block;
        background-color: var(--main-color-one, #1A85ED);
        color: #ffffff;
        font-size: 15px;
        font-weight: 500;
        padding: 14px 32px;
        border-radius: 4px;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
    }

    .mc-btn-primary:hover {
        background-color: #136bc0;
        color: #ffffff;
    }

    .mc-hero-image-wrapper {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .mc-hero-image {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
        .mc-hero-wrapper {
            flex-direction: column;
            text-align: center;
            min-height: auto;
        }

        .mc-hero-content {
            max-width: 100%;
            margin-bottom: 40px;
        }

        .mc-hero-image-wrapper {
            justify-content: center;
        }
    }


    .mc-category-section {
        background-color: #ffffff;
        font-family: 'Inter', 'Roboto', sans-serif;
    }

    .mc-cat-header {
        margin-bottom: 40px;
    }

    .mc-section-tag {
        display: inline-block;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--main-color-one, #1A85ED); /* Medicom Coral */
        background: color-mix(in srgb, var(--main-color-one, #1A85ED) 10%, transparent);
        padding: 4px 12px;
        border-radius: 20px;
        margin-bottom: 12px;
    }

    .mc-section-title {
        font-size: 32px;
        font-weight: 700;
        color: #222222;
        margin-bottom: 10px;
    }

    .mc-section-sub {
        font-size: 16px;
        color: #666666;
        margin: 0;
    }

    .mc-cat-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        text-align: center;
        transition: transform 0.3s ease;
        padding: 10px;
    }

    .mc-cat-card:hover {
        transform: translateY(-5px);
    }

    .mc-cat-icon {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        background-color: #f9f9f9;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        overflow: hidden;
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }

    .mc-cat-card:hover .mc-cat-icon {
        border-color: var(--main-color-one, #1A85ED);
        box-shadow: 0 8px 25px color-mix(in srgb, var(--main-color-one, #1A85ED) 15%, transparent);
    }

    .mc-cat-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .mc-cat-icon .placeholder-icon {
        font-size: 3.5rem;
        color: var(--main-color-one, #1A85ED);
    }

    .mc-cat-name {
        font-size: 16px;
        font-weight: 700;
        color: #333333;
        margin-bottom: 4px;
        transition: color 0.3s ease;
    }

    .mc-cat-card:hover .mc-cat-name {
        color: var(--main-color-one, #1A85ED);
    }

    .mc-cat-count {
        font-size: 13px;
        color: #888888;
        font-weight: 500;
    }

    @media (max-width: 768px) {
        .mc-cat-icon {
            width: 100px;
            height: 100px;
        }
        .mc-section-title {
            font-size: 26px;
        }
    }


    .mc-featured-products {
        background-color: #ffffff;
        font-family: 'Inter', 'Roboto', sans-serif;
    }

    .mc-fp-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        padding-bottom: 10px;
    }

    .mc-fp-title {
        font-size: 20px;
        font-weight: 700;
        color: #222222;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .mc-fp-view-all {
        font-size: 14px;
        color: var(--main-color-one, #1A85ED);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.2s;
    }

    .mc-fp-view-all:hover {
        color: var(--main-color-one, #1A85ED);
    }

    .mc-fp-slider {
        margin: 0 -10px;
    }

    .mc-fp-item {
        padding: 10px;
    }

    .mc-fp-card {
        background: #ffffff;
        border-radius: 8px;
        border: 1px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: box-shadow 0.3s;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    }

    .mc-fp-card:hover {
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }

    .mc-fp-image-wrapper {
        position: relative;
        width: 100%;
        padding-top: 100%; /* 1:1 Aspect Ratio */
        background-color: #f9f9f9;
        overflow: hidden;
    }

    .mc-fp-image-wrapper img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mc-fp-image-placeholder {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: #ccc;
    }

    .mc-fp-wishlist {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        background: #ffffff;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #888;
        font-size: 18px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        cursor: pointer;
        transition: all 0.2s;
    }

    .mc-fp-wishlist:hover {
        color: var(--main-color-one, #1A85ED);
    }

    .mc-fp-details {
        padding: 16px 16px 20px;
        flex-grow: 1;
    }

    .mc-fp-category {
        display: block;
        font-size: 10px;
        color: var(--main-color-one, #1A85ED);
        font-weight: 700;
        margin-bottom: 6px;
        letter-spacing: 0.5px;
    }

    .mc-fp-name {
        display: block;
        font-size: 15px;
        font-weight: 700;
        color: #333333;
        text-decoration: none;
        margin-bottom: 12px;
        line-height: 1.3;
        min-height: 38px;
    }

    .mc-fp-name:hover {
        color: var(--main-color-one, #1A85ED);
    }

    .mc-fp-price-box {
        display: flex;
        align-items: baseline;
        gap: 8px;
    }

    .mc-fp-price-sale {
        font-size: 16px;
        font-weight: 700;
        color: var(--main-color-one, #1A85ED);
    }

    .mc-fp-price-regular {
        font-size: 13px;
        color: #999999;
        text-decoration: line-through;
    }

    .mc-fp-add-cart {
        width: 100%;
        background-color: var(--main-color-one, #1A85ED);
        color: #ffffff;
        border: none;
        padding: 14px 0;
        font-size: 14px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .mc-fp-add-cart:hover {
        background-color: var(--main-color-one, #1A85ED);
    }

    /* Slick Carousel Dots Styling */
    .mc-fp-slider .slick-dots {
        display: flex;
        justify-content: center;
        list-style: none;
        padding: 0;
        margin: 30px 0 0;
        gap: 8px;
    }

    .mc-fp-slider .slick-dots li button {
        font-size: 0;
        line-height: 0;
        display: block;
        width: 8px;
        height: 8px;
        padding: 0;
        cursor: pointer;
        color: transparent;
        border: 0;
        outline: none;
        background: #dcdcdc;
        border-radius: 50%;
        transition: all 0.3s;
    }

    .mc-fp-slider .slick-dots li.slick-active button {
        width: 20px;
        border-radius: 10px;
        background: var(--main-color-one, #1A85ED);
    }


    .mc-promo-section {
        background-color: #ffffff;
        font-family: 'Inter', 'Roboto', sans-serif;
    }

    .mc-promo-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .mc-promo-card {
        padding: 44px 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
        min-height: 240px;
        border-radius: 6px;
        background: transparent;
    }

    .mc-promo-card-left {
        background: #ECEEF7 !important;
        flex-direction: row;
    }

    .mc-promo-card-right {
        background: #E8F2FA !important;
        flex-direction: row-reverse;
    }

    .mc-promo-text {
        flex: 1;
    }

    .mc-promo-title {
        font-size: clamp(26px, 3vw, 40px);
        font-weight: 700;
        line-height: 1.2;
        color: #1c1c2e;
        margin-bottom: 20px;
        display: block !important;
        overflow: visible !important;
        -webkit-line-clamp: unset !important;
        text-overflow: unset !important;
        border-radius: 0 !important;
    }

    .mc-promo-title span { color: #1c1c2e; }

    .mc-promo-btn {
        display: inline-block !important;
        font-size: 13px;
        font-weight: 500;
        color: #1c1c2e;
        text-decoration: none;
        border-bottom: none !important;
        transition: opacity 0.2s;
    }

    .mc-promo-btn::after {
        content: '';
        display: block;
        width: 28px;
        height: 2px;
        background: #1c1c2e;
        margin-top: 7px;
        transition: width 0.2s;
    }

    .mc-promo-btn:hover {
        opacity: 0.7;
        color: #1c1c2e;
    }

    .mc-promo-btn:hover::after {
        width: 40px;
    }

    .mc-promo-img-wrap {
        flex-shrink: 0;
        width: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mc-promo-img {
        max-width: 100%;
        height: auto;
        max-height: 180px;
        object-fit: contain;
    }

    @media (max-width: 991px) {
        .mc-promo-row {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 575px) {
        .mc-promo-card {
            padding: 32px 28px;
            flex-direction: column !important;
            text-align: center;
        }

        .mc-promo-btn::after {
            margin: 7px auto 0;
        }
    }


/* Custom Navbar CSS ported from Electro */
.el-navbar { background: #fff; border-bottom: 1px solid #f0eae6; position: sticky; top: 0; z-index: 1000; }
.el-navbar-inner { display: flex; align-items: center; gap: 20px; padding: 14px 0; }
.el-navbar-logo { flex-shrink: 0; }
.el-logo-link { display: block; }
.el-logo-img { height: 40px; width: auto; }
.el-nav-desktop { flex: 1; }
.el-nav-links { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.el-nav-links > li { position: relative; }
.el-nav-links > li > a { display: block; padding: 8px 14px; font-size: 14px; font-weight: 600; color: #2c2c2c; text-decoration: none; border-radius: 6px; transition: color .18s, background .18s; }
.el-nav-links > li > a:hover, .el-nav-links > li.active > a { color: var(--main-color-one, #1A85ED); background: var(--section-bg-6, #EAF2F8); }
.el-nav-links li ul { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid #f0eae6; border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,.10); min-width: 200px; padding: 6px 0; z-index: 999; }
.el-nav-links li:hover > ul { display: block; }
.el-nav-links li ul li a { display: block; padding: 9px 16px; font-size: 13px; color: #444; text-decoration: none; transition: color .15s, background .15s; }
.el-nav-links li ul li a:hover { color: var(--main-color-one, #1A85ED); background: var(--section-bg-6, #EAF2F8); }
.el-navbar-right { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.el-search { display: flex; align-items: center; background: var(--section-bg-3, #F4F8FB); border-radius: 8px; padding: 0 10px; gap: 6px; height: 40px; width: 240px; position: relative; }
.el-search input { border: none; background: transparent; outline: none; font-size: 13px; flex: 1; color: #2c2c2c; }
.el-search button { background: none; border: none; color: #888; cursor: pointer; font-size: 16px; padding: 0; transition: color .18s; }
.el-search button:hover { color: var(--main-color-one, #1A85ED); }

/* ── Search dropdown ─────────────────────────────────────────── */
.el-search-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: #fff;
    border: 1px solid var(--section-bg-6, #EAF2F8);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    z-index: 9999;
    list-style: none;
    margin: 0; padding: 6px 0;
    max-height: 380px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--section-bg-6, #EAF2F8) transparent;
}
.el-search-dropdown.open { display: block; }
.el-search-dropdown .product-suggestion-list-item { width: 100% !important; }
.el-search-dropdown li { border-bottom: none; }
.el-search-dropdown li .product-suggestion-list-link,
.el-search-dropdown li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    text-decoration: none;
    color: #1a1a1a !important;
    border-radius: 8px;
    margin: 0 6px;
    transition: background .15s;
}
.el-search-dropdown li .product-suggestion-list-link:hover,
.el-search-dropdown li > a:hover { background: color-mix(in srgb, var(--main-color-one, #1A85ED) 6%, transparent); }
.el-search-dropdown li .product-suggestion-list-link:hover .product-name,
.el-search-dropdown li .product-suggestion-list-link:hover h6.product-name,
.el-search-dropdown li > a:hover .product-name,
.el-search-dropdown li > a:hover h6 { color: var(--main-color-one, #1A85ED) !important; }
.el-search-dropdown li .product-image {
    width: 46px; height: 46px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--section-bg-6, #EAF2F8);
    background: var(--section-bg-6, #EAF2F8);
}
.el-search-dropdown li .product-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.el-search-dropdown li .product-info { flex: 1; min-width: 0; }
.el-search-dropdown li .product-info-top { margin: 0 !important; }
.el-search-dropdown li .product-suggestion-list-link .product-info .product-info-top .product-name,
.el-search-dropdown li .product-name,
.el-search-dropdown li h6.product-name {
    display: block !important;
    -webkit-box-orient: horizontal !important;
    -webkit-line-clamp: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    clip: auto !important; clip-path: none !important;
    height: auto !important; min-height: 1em !important; max-height: none !important;
    width: auto !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    line-height: 1.4 !important;
    margin: 0 !important; padding: 0 !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    transition: color .15s !important;
}
.el-search-dropdown li .product-price { margin: 0 !important; }
.el-search-dropdown li .price-update-through { display: flex !important; align-items: center; gap: 5px; margin-top: 2px; }
.el-search-dropdown li .flash-price,
.el-search-dropdown li .flash-prices { font-size: 12px !important; font-weight: 700; color: var(--main-color-one, #1A85ED) !important; }
.el-search-dropdown li .flash-old-prices { font-size: 11px !important; color: #aaa; text-decoration: line-through; }
.el-search-footer { border-top: 1px solid var(--section-bg-6, #EAF2F8) !important; margin-top: 6px; padding-top: 4px; }
.el-search-footer a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 14px !important;
    margin: 0 !important;
    border-radius: 0 0 12px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--main-color-one, #1A85ED) !important;
    text-decoration: none;
    transition: background .15s;
    letter-spacing: .3px;
}
.el-search-footer a:hover { background: color-mix(in srgb, var(--main-color-one, #1A85ED) 7%, transparent) !important; }
.el-search-empty {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 14px;
    font-size: 13px;
    color: #888;
    border-bottom: none !important;
}
.el-search-empty-icon { font-size: 18px; color: #aaa; }
.el-icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; color: #444; text-decoration: none; font-size: 20px; position: relative; transition: color .18s, background .18s; }
.el-icon-btn:hover { color: var(--main-color-one, #1A85ED); background: var(--section-bg-6, #EAF2F8); }
.el-badge { position: absolute; top: 4px; right: 4px; background: var(--main-color-one, #1A85ED); color: #fff; font-size: 10px; font-weight: 700; min-width: 16px; height: 16px; border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 0 3px; line-height: 1; }
.el-hamburger { background: none; border: 1px solid var(--section-bg-6, #EAF2F8); border-radius: 6px; width: 40px; height: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; padding: 0; transition: border-color .18s; }
.el-hamburger span { display: block; width: 20px; height: 2px; background: #444; border-radius: 2px; transition: all .25s; }
.el-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.el-hamburger.open span:nth-child(2) { opacity: 0; }
.el-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.el-mobile-nav { display: none; padding: 12px 0 16px; border-top: 1px solid #f0eae6; }
.el-mobile-nav.open { display: block; }
.el-mobile-links { list-style: none; margin: 0; padding: 0; }
.el-mobile-links li a { display: block; padding: 10px 4px; font-size: 14px; font-weight: 600; color: #2c2c2c; text-decoration: none; border-bottom: 1px solid var(--section-bg-3, #F4F8FB); }
.el-mobile-links li a:hover { color: var(--main-color-one, #1A85ED); }
.el-mobile-links li ul { padding-left: 14px; }
.el-mobile-links li ul li a { font-weight: 400; font-size: 13px; }
.el-mobile-search { display: flex; align-items: center; gap: 8px; margin-top: 12px; background: var(--section-bg-3, #F4F8FB); border-radius: 8px; padding: 0 10px; height: 40px; }
.el-mobile-search input { border: none; background: transparent; outline: none; font-size: 13px; flex: 1; color: #2c2c2c; }
.el-mobile-search button { background: none; border: none; color: #888; cursor: pointer; font-size: 16px; padding: 0; }



/* Medicom Our Store / Card CSS (Redesign) */
.mc-store-section { background:#fff; font-family: "Inter", sans-serif; }
.mc-center-title { font-size: 32px; font-weight: 700; color: #1a1a1a; text-align: center; margin: 0 0 36px; position: relative; font-family: "Playfair Display", serif; }
.mc-center-title::after { content: ""; display: block; width: 40px; height: 2px; background: #1a1a1a; margin: 15px auto 0; }
.mc-store-tabs { display:flex; align-items:center; justify-content:center; gap:32px; margin-bottom:40px; flex-wrap:wrap; }
.mc-store-tab { background:transparent; border:none; padding:0 0 6px 0; color:#555; font-size:14px; font-weight:500; cursor:pointer; transition:color .2s; position:relative; }
.mc-store-tab::after { content:""; position:absolute; bottom:0; left:0; width:100%; height:2px; background:#1a1a1a; transform:scaleX(0); transition:transform .3s; }
.mc-store-tab:hover, .mc-store-tab.active { color:#1a1a1a; font-weight:700; }
.mc-store-tab.active::after { transform:scaleX(1); }

.mc-store-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:30px; }

.mc-card { background:#fff; border:1px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white); border-radius:12px; overflow:hidden; display:flex; flex-direction:column; transition:box-shadow .3s; }
.mc-card:hover { box-shadow:0 8px 30px rgba(0,0,0,.06); }
.mc-card-img-wrap { position:relative; overflow:hidden; height:240px; flex-shrink:0; background:#f9f9f9; }
.mc-card-img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .35s; }
.mc-card:hover .mc-card-img { transform:scale(1.03); }
.mc-card-img-ph { width:100%; height:100%; display:flex; align-items:center; justify-content:center; color:#ccc; font-size:48px; }
.mc-card-wish { position:absolute; top:12px; right:12px; width:36px; height:36px; background:#fff; border:none; border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; font-size:18px; color:#a0a0a0; box-shadow:0 2px 8px rgba(0,0,0,.08); transition:color .2s,transform .2s; }
.mc-card-wish:hover { color:var(--main-color-one, #1A85ED); transform:scale(1.05); }
.mc-card-badge { position:absolute; top:12px; left:12px; background:var(--main-color-one, #1A85ED); color:#fff; font-size:10px; font-weight:700; padding:4px 8px; border-radius:4px; line-height:1.4; text-transform:uppercase; }
.mc-card-badge.mc-card-badge-new { background:var(--new-color, #1A85ED); }

.mc-card-body { padding:20px; display:flex; flex-direction:column; gap:8px; flex:1; }
.mc-card-cat { font-size:11px; font-weight:700; color:var(--main-color-one, #1A85ED); text-transform:uppercase; letter-spacing:1px; }
.mc-card-name { font-size:16px; font-weight:700; color:#1a1a1a; text-decoration:none; display:block; line-height:1.4; font-family:"Inter", sans-serif; }
.mc-card-name:hover { color:var(--main-color-one, #1A85ED); }
.mc-card-prices { display:flex; align-items:center; gap:8px; margin-bottom:12px; }
.mc-card-price { font-size:20px; font-weight:800; color:#1a1a1a; }
.mc-card-old { font-size:13px; color:#999; text-decoration:line-through; }
.mc-card-atc { background:var(--main-color-one, #1A85ED); border:none; border-radius:8px; display:inline-flex; align-items:center; justify-content:center; color:#fff; font-size:14px; font-weight:700; cursor:pointer; transition:background .2s; padding:6px 16px; gap:8px; width: 100%; margin-top: 4px; }
.mc-card-atc:hover { background:#1266b8; }
.mc-no-data { color:#aaa; font-size:14px; text-align:center; padding:40px 0; grid-column:1/-1; }
@media (max-width:991px) { .mc-store-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:575px) { .mc-store-grid { grid-template-columns:repeat(1,1fr); } }

/* Medicom Footer CSS Ported from Electro */
/* ── Footer ── */
.mc-footer { background:#f2f3f8; border-top:1px solid var(--section-bg-6, #EAF2F8); }
/* Top bar */
.mc-footer-top { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px; padding:28px 0; border-bottom:none; }
.mc-footer-social { display:flex; gap:8px; flex-wrap:wrap; }
.mc-footer-social-icon { width:36px; height:36px; border:1px solid rgba(0,0,0,.12); border-radius:6px; display:flex; align-items:center; justify-content:center; color:#555; font-size:14px; text-decoration:none; transition:background .2s,color .2s,border-color .2s; }
.mc-footer-social-icon:hover { background:var(--main-color-one, #1A85ED); color:#fff; border-color:var(--main-color-one, #1A85ED); }
.mc-footer-logo-wrap { display:flex; flex-direction:column; align-items:center; gap:4px; text-align:center; }
.mc-footer-logo { max-height:44px; width:auto; display:block; }
.mc-footer-logo-text { font-size:22px; font-weight:800; color:#1a1a1a; }
.mc-footer-tagline { font-size:12px; color:#999; margin:0; }
/* Payment logos */
.mc-footer-payment { display:flex; align-items:center; }
.mc-footer-payment-icons { display:flex; gap:6px; flex-wrap:wrap; align-items:center; justify-content:flex-end; }
.mc-footer-pay-item { background:#fff; border:1px solid var(--section-bg-6, #EAF2F8); border-radius:5px; padding:5px 10px; display:flex; align-items:center; justify-content:center; height:32px; }
.mc-footer-pay-logo { max-height:20px; max-width:60px; width:auto; display:block; object-fit:contain; }
.mc-footer-pay-badge { font-size:10px; font-weight:700; color:#555; white-space:nowrap; }
/* Divider */
.mc-footer-divider { height:1px; background:var(--section-bg-6, #EAF2F8); margin:0; }
/* Main 4-col */
.mc-footer-main { display:grid; grid-template-columns:repeat(4,1fr); gap:40px; padding:44px 0; }
.mc-footer-col-title { font-size:14px; font-weight:700; color:#1a1a1a; margin:0 0 20px; text-transform:uppercase; letter-spacing:.04em; }
.mc-footer-links { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px; }
.mc-footer-links li { margin:0; }
.mc-footer-links a { font-size:13px; color:#666; text-decoration:none; transition:color .2s; }
.mc-footer-links a:hover { color:var(--main-color-one, #1A85ED); }
/* Contact */
.mc-footer-contact { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:14px; }
.mc-footer-contact-item { display:flex; align-items:flex-start; gap:10px; font-size:13px; color:#666; }
.mc-footer-contact-icon { color:var(--main-color-one, #1A85ED); font-size:15px; flex-shrink:0; margin-top:1px; }
.mc-footer-contact-item a { color:#666; text-decoration:none; transition:color .2s; }
.mc-footer-contact-item a:hover { color:var(--main-color-one, #1A85ED); }
/* Newsletter */
.mc-footer-newsletter-text { font-size:13px; color:#888; line-height:1.6; margin:0 0 14px; }
.mc-footer-newsletter-row { display:flex; border-radius:6px; overflow:hidden; border:1px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white); }
.mc-footer-email-input { flex:1; padding:10px 14px; border:none; outline:none; font-size:13px; color:#333; background:#fff; min-width:0; }
.mc-footer-subscribe-btn { background:var(--main-color-one, #1A85ED); color:#fff; border:none; padding:10px 15px; cursor:pointer; transition:background .2s; font-size:16px; flex-shrink:0; }
.mc-footer-subscribe-btn:hover { background:var(--main-color-one, #1A85ED); }
/* Bottom */
.mc-footer-bottom { background:#eaf1f7; }
.mc-footer-copyright { font-size:13px; color:#888; text-align:center; padding:16px 0; }
.mc-footer-copyright a { color:var(--main-color-one, #1A85ED); text-decoration:none; }

/* ── Responsive ── */

@media (max-width:1024px) {
    .mc-footer-main { grid-template-columns:repeat(2,1fr); }
    .mc-footer-top { gap:16px; }
}
@media (max-width:768px) {
    .mc-footer-main { grid-template-columns:1fr; }
    .mc-footer-top { flex-direction:column; text-align:center; }
    .mc-footer-social { justify-content:center; }
    .mc-footer-payment-icons { justify-content:center; }
}

/* Global Breadcrumb Override */
.badge-area.bg-item-four { background-color: var(--breadcrumb-bg, #F4F8FB) !important; }


/* --- CSS PORTED FROM ELECTRO TO FIX MISSING CLASSES --- */

/* ============================================================
   Electro — Default Page Styles (shop, cart, checkout)
   Loaded before theme CSS so theme overrides take precedence.
   ============================================================ */

/* Tab content toggle */
.tab-content-item { display: none; }
.tab-content-item.active { display: block; }

/* Shop page layout compatibility */
.shop-area { padding-top: 60px; padding-bottom: 60px; }
.shop-contents-wrapper { display: flex; gap: 24px; }
.shop-sidebar { min-width: 260px; }
.product-grid-wrapper { flex: 1; }
.shop-grid-contents { flex: 1; min-width: 0; }

/* Cart & Checkout */
.cart-area { padding-top: 60px; padding-bottom: 60px; }
.checkout-area { padding-top: 60px; padding-bottom: 60px; }

/* Product single */
.single-product-details-area { padding-top: 60px; padding-bottom: 60px; }

/* Price range slider — Bootstrap 5 compatible */
.price-range-slider .noUi-connect { background: #2563eb; }
.price-range-slider .noUi-handle { border-color: #2563eb; }

/* Filter sidebar */
.widget-box { background: #fff; border-radius: 8px; padding: 20px; margin-bottom: 20px; border: 1px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white); }
.widget-box .widget-title { font-size: 15px; font-weight: 700; color: #0a0a0a; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid #2563eb; }

/* Add to cart button */
.add-to-cart-btn { background: #2563eb; color: #fff; border: none; padding: 6px 24px; border-radius: 6px; font-weight: 600; cursor: pointer; transition: opacity .2s; }
.add-to-cart-btn:hover { opacity: .85; }

/* Rating stars */
.rating-star .las.la-star,
.rating-star .las.la-star-half-alt { color: #326DE4; }
.rating-star .lar.la-star { color: #d1d5db; }

/* =============================================================
   ELECTRO THEME — Widget CSS  (el-* prefix)
   Accent: var(--main-color-one, #1A85ED)
   ============================================================= */

/* ── Shared helpers ── */
.mc-center-title { font-size:24px; font-weight:700; color:#1a1a1a; text-align:center; margin:0 0 36px; }
.mc-no-data { color:#aaa; font-size:14px; text-align:center; padding:40px 0; }
.mc-dots { display:flex; align-items:center; justify-content:center; gap:8px; margin-top:28px; }
.mc-dot { width:10px; height:10px; border-radius:50%; border:none; background:#e0e0e0; cursor:pointer; padding:0; transition:background .2s,width .2s; }
.mc-dot.active { background:#1A85ED; width:28px; border-radius:5px; }

/* ── Hero Section ── */
.mc-hero { background:var(--section-bg-6, #EAF2F8); min-height:520px; position:relative; overflow:hidden; }
.mc-hero-bg-blobs { position:absolute; inset:0; pointer-events:none; }
.mc-hero-blob { position:absolute; }
.mc-hero-blob-1 { width:700px; height:520px; top:-60px; left:-80px; opacity:.7; }
.mc-hero-blob-2 { width:400px; height:320px; bottom:-40px; left:120px; opacity:.5; }
.mc-hero-inner { display:flex; align-items:center; gap:40px; min-height:520px; padding:60px 0; position:relative; z-index:1; }
.mc-hero-left { flex:1; position:relative; min-height:400px; }
.mc-hero-orbit { position:relative; width:100%; height:400px; }
.mc-hero-ring { position:absolute; border:2px dashed color-mix(in srgb, var(--main-color-one, #1A85ED) 25%, transparent); border-radius:50%; }
.mc-hero-ring-outer { width:360px; height:360px; top:50%; left:50%; transform:translate(-50%,-50%); }
.mc-hero-ring-inner { width:240px; height:240px; top:50%; left:50%; transform:translate(-50%,-50%); }
.mc-hero-circle { position:absolute; border-radius:50%; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.mc-hero-circle-large  { width:160px; height:160px; }
.mc-hero-circle-medium { width:100px; height:100px; }
.mc-hero-circle-small  { width:70px;  height:70px; }
.mc-hero-circle-img { width:80%; height:80%; object-fit:contain; }
.mc-hero-circle-icon { color:#fff; font-size:28px; }
/* Position 5 circles around the orbit */
.mc-hero-pos-1 { top:50%; left:50%; transform:translate(-50%,-50%); }
.mc-hero-pos-2 { top:10%; left:50%; transform:translate(-50%,-50%); }
.mc-hero-pos-3 { top:25%; left:10%; transform:translate(-50%,-50%); }
.mc-hero-pos-4 { bottom:12%; left:60%; transform:translate(-50%,50%); }
.mc-hero-pos-5 { bottom:5%; left:15%; transform:translate(-50%,50%); }
.mc-hero-right { flex:1; display:flex; flex-direction:column; gap:20px; padding-left:20px; }
.mc-hero-eyebrow { font-size:12px; font-weight:700; color:var(--main-color-one, #1A85ED); }
.mc-hero-title { font-size:clamp(36px,5vw,64px); font-weight:800; color:#1a1a1a; line-height:1.1; margin:0; }
.mc-hero-desc { font-size:15px; color:#666; line-height:1.7; margin:0; max-width:480px; }
.mc-hero-btn { display:inline-block; background:var(--main-color-one, #1A85ED); color:#fff; font-size:14px; font-weight:700; padding:14px 32px; border-radius:4px; text-decoration:none; transition:background .2s; align-self:flex-start; }
.mc-hero-btn:hover { background:var(--main-color-four, #1266B8); color:#fff; }
/* Hero image variant */
.mc-hero-image-wrap { width:100%; height:100%; border-radius:12px; overflow:hidden; padding: 30px; }
.mc-hero-image { width:100%; height:100%; object-fit:cover; display:block; }

/* ── Category Banners ── */
.mc-catbanner-section { background:#fff; }
.mc-catbanner-row { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.mc-catbanner-card { display:flex; align-items:center; gap:16px; background:#f5f5f5; border-radius:12px; padding:24px 28px; text-decoration:none; transition:box-shadow .2s; overflow:hidden; }
.mc-catbanner-card:hover { box-shadow:0 6px 24px rgba(0,0,0,.09); }
.mc-catbanner-img-side { flex-shrink:0; width:130px; height:110px; display:flex; align-items:center; justify-content:center; }
.mc-catbanner-img { width:100%; height:100%; object-fit:contain; }
.mc-catbanner-img-ph { font-size:48px; color:#ccc; }
.mc-catbanner-text-side { display:flex; flex-direction:column; gap:8px; }
.mc-catbanner-name { font-size:20px; font-weight:700; color:#1a1a1a; margin:0; line-height:1.2; }
.mc-catbanner-link { color:#1A85ED; font-size:13px; font-weight:600; text-decoration:underline; }

/* ── Featured Collections ── */
.mc-featured-section { background:#fff; }
.mc-featured-slider .mc-featured-slide { display:none; }
.mc-featured-slider .mc-featured-slide.active { display:block; }
/* ── Unified El-Card (Our Store, Featured Collections, Shop Grid, AJAX) ── */
/* Grid layouts */

/* ── Category Section ── */
.mc-cat-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:20px; }
.mc-cat-card { display:flex; flex-direction:column; align-items:center; text-decoration:none; gap:12px; padding:20px 12px; background:#fff; border:1px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white); border-radius:12px; transition:box-shadow .2s,transform .2s; }
.mc-cat-card:hover { box-shadow:0 8px 24px rgba(0,0,0,.1); transform:translateY(-3px); }
.mc-cat-img-wrap { width:80px; height:80px; border-radius:50%; overflow:hidden; background:#f5f5f5; flex-shrink:0; display:flex; align-items:center; justify-content:center; }
.mc-cat-img { width:100%; height:100%; object-fit:cover; }
.mc-cat-info { display:flex; flex-direction:column; align-items:center; gap:4px; text-align:center; }
.mc-cat-name { font-size:13px; font-weight:700; color:#1a1a1a; line-height:1.3; }
.mc-cat-count { font-size:11px; color:#888; }

/* ── Our Store tabs ── */
.mc-store-section { background:#fff; }
.mc-store-tabs { display:flex; align-items:center; justify-content:center; gap:12px; margin-bottom:32px; flex-wrap:wrap; }
.mc-store-tab { padding:8px 24px; border:1px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white); border-radius:4px; background:#fff; color:#666; font-size:13px; font-weight:500; cursor:pointer; transition:background .15s,color .15s,border-color .15s; }
.mc-store-tab:hover,.mc-store-tab.active { background:var(--main-color-one, #1A85ED); color:#fff; border-color:var(--main-color-one, #1A85ED); font-weight:700; }

/* ── Promo Banners ── */
.mc-promo-blob { display: none; }
.mc-promo-eyebrow { font-size:13px; color:#888; font-weight:500; }
.mc-promo-accent { font-size:clamp(28px,4vw,44px); font-weight:800; color:#1c1c2e; line-height:1.1; }
.mc-promo-dark { font-size:clamp(22px,3vw,34px); font-weight:700; color:#1c1c2e; line-height:1.2; }
.mc-promo-btn-circle { display: none; }

/* ── New Release Banner ── */
.mc-release-section { background:#fff; }
.mc-release-card { background:#EAF2F8; border-radius:20px; padding:48px 56px; display:flex; align-items:center; gap:40px; position:relative; overflow:hidden; }
.mc-release-blob { position:absolute; border-radius:50%; pointer-events:none; }
.mc-release-blob-1 { width:280px; height:280px; background:rgba(232,96,60,.08); top:-60px; left:180px; }
.mc-release-blob-2 { width:180px; height:180px; background:rgba(232,96,60,.06); bottom:-40px; left:80px; }
.mc-release-img-side { flex:1; position:relative; display:flex; align-items:center; justify-content:center; z-index:1; }
.mc-release-img {  height: 400px; width: 400px; object-fit:contain; display:block; }
.mc-release-img-ph { width:260px; height:260px; background:#f0ebe5; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#ccc; font-size:80px; }
.mc-release-badge { position:absolute; bottom:0px; left:2px; width:165px; height:165px; background:#1A85ED; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:20px; font-weight:700; color:#fff; text-align:center; line-height:1.3; padding:8px; }
.mc-release-text-side { flex:1; display:flex; flex-direction:column; gap:20px; z-index:1; }
.mc-release-title { display:flex; flex-direction:column; margin:0; }
.mc-release-accent { font-size:clamp(40px,6vw,80px); font-weight:800; color:#1A85ED; line-height:1; }
.mc-release-dark { font-size:clamp(36px,5vw,70px); font-weight:700; color:#1a1a1a; line-height:1.1; }
.mc-release-price { font-size:clamp(22px,3vw,36px); font-weight:700; color:#1A85ED; }
.mc-release-btn { display:inline-block; background:#1A85ED; color:#fff; font-size:13px; font-weight:700; padding:12px 28px; border-radius:4px; text-decoration:none; transition:background .2s; align-self:flex-start; }
.mc-release-btn:hover { background:#1266B8; color:#fff; }

/* ── Brand Logos ── */
.mc-brands-section { background:#fff; }
.mc-brands-carousel { position:relative; }
.mc-brands-slides-wrap { position:relative; }
.mc-brands-slide { display:none; }
.mc-brands-slide.active { display:block; }
.mc-brands-row { display:flex; align-items:center; justify-content:center; gap:24px; flex-wrap:wrap; padding:16px 0; }
.mc-brand-item { display:flex; align-items:center; justify-content:center; padding:16px 20px; border:1px solid #e8e8e8; border-radius:10px; transition:box-shadow .2s; text-decoration:none; min-width:120px; }
.mc-brand-item:hover { box-shadow:0 4px 16px rgba(0,0,0,.07); border-color:#1A85ED; }
.mc-brand-logo { max-height:44px; max-width:110px; width:auto; object-fit:contain; filter:grayscale(1); opacity:.6; transition:filter .2s,opacity .2s; }
.mc-brand-item:hover .mc-brand-logo { filter:grayscale(0); opacity:1; }
.mc-brand-text { font-size:13px; font-weight:600; color:#888; }
.mc-brands-dots { margin-top:20px; }

/* ── Updated News ── */
.mc-news-section { background:#fff; }
.mc-news-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.mc-news-card { display:flex; flex-direction:column; gap:12px; }
.mc-news-img-wrap { display:block; border-radius:10px; overflow:hidden; aspect-ratio:16/10; }
.mc-news-img { width:100%; height:100%; object-fit:cover; transition:transform .3s; display:block; }
.mc-news-card:hover .mc-news-img { transform:scale(1.03); }
.mc-news-img-ph { width:100%; height:100%; background:#f0ebe5; display:flex; align-items:center; justify-content:center; color:#ccc; font-size:40px; }
.mc-news-body { display:flex; flex-direction:column; gap:8px; }
.mc-news-cat { font-size:13px; font-weight:600; color:#1A85ED; }
.mc-news-title { font-size:16px; font-weight:700; color:#1a1a1a; text-decoration:none; line-height:1.5; display:block; }
.mc-news-title:hover { color:#1A85ED; }

/* ── Service Features ── */
.mc-services-section { background:#fff; }
.mc-services-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.mc-service-item { display:flex; flex-direction:column; align-items:center; text-align:center; padding:28px 20px; border-radius:12px; gap:12px; }
.mc-service-icon-wrap { width:60px; height:60px; display:flex; align-items:center; justify-content:center; }
.mc-service-icon { font-size:36px; color:#1A85ED; }
.mc-service-title { font-size:15px; font-weight:700; color:#1a1a1a; margin:0; }
.mc-service-desc { font-size:13px; color:#888; margin:0; line-height:1.5; }

/* ── Footer ── */
.mc-footer { background:var(--section-bg-6, #EAF2F8); border-top:1px solid var(--section-bg-6, #EAF2F8); }
/* Top bar */
.mc-footer-top { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px; padding:28px 0; border-bottom:none; }
.mc-footer-social { display:flex; gap:8px; flex-wrap:wrap; }
.mc-footer-social-icon { width:36px; height:36px; border:1px solid rgba(0,0,0,.12); border-radius:6px; display:flex; align-items:center; justify-content:center; color:#555; font-size:14px; text-decoration:none; transition:background .2s,color .2s,border-color .2s; }
.mc-footer-social-icon:hover { background:var(--main-color-one, #1A85ED); color:#fff; border-color:var(--main-color-one, #1A85ED); }
.mc-footer-logo-wrap { display:flex; flex-direction:column; align-items:center; gap:4px; text-align:center; }
.mc-footer-logo { max-height:44px; width:auto; display:block; }
.mc-footer-logo-text { font-size:22px; font-weight:800; color:#1a1a1a; }
.mc-footer-tagline { font-size:12px; color:#999; margin:0; }
/* Payment logos */
.mc-footer-payment { display:flex; align-items:center; }
.mc-footer-payment-icons { display:flex; gap:6px; flex-wrap:wrap; align-items:center; justify-content:flex-end; }
.mc-footer-pay-item { background:#fff; border:1px solid var(--section-bg-6, #EAF2F8); border-radius:5px; padding:5px 10px; display:flex; align-items:center; justify-content:center; height:32px; }
.mc-footer-pay-logo { max-height:20px; max-width:60px; width:auto; display:block; object-fit:contain; }
.mc-footer-pay-badge { font-size:10px; font-weight:700; color:#555; white-space:nowrap; }
/* Divider */
.mc-footer-divider { height:1px; background:var(--section-bg-6, #EAF2F8); margin:0; }
/* Main 4-col */
.mc-footer-main { display:grid; grid-template-columns:repeat(4,1fr); gap:40px; padding:44px 0; }
.mc-footer-col-title { font-size:14px; font-weight:700; color:#1a1a1a; margin:0 0 20px; text-transform:uppercase; letter-spacing:.04em; }
.mc-footer-links { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px; }
.mc-footer-links li { margin:0; }
.mc-footer-links a { font-size:13px; color:#666; text-decoration:none; transition:color .2s; }
.mc-footer-links a:hover { color:var(--main-color-one, #1A85ED); }
/* Contact */
.mc-footer-contact { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:14px; }
.mc-footer-contact-item { display:flex; align-items:flex-start; gap:10px; font-size:13px; color:#666; }
.mc-footer-contact-icon { color:var(--main-color-one, #1A85ED); font-size:15px; flex-shrink:0; margin-top:1px; }
.mc-footer-contact-item a { color:#666; text-decoration:none; transition:color .2s; }
.mc-footer-contact-item a:hover { color:var(--main-color-one, #1A85ED); }
/* Newsletter */
.mc-footer-newsletter-text { font-size:13px; color:#888; line-height:1.6; margin:0 0 14px; }
.mc-footer-newsletter-row { display:flex; border-radius:6px; overflow:hidden; border:1px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white); }
.mc-footer-email-input { flex:1; padding:10px 14px; border:none; outline:none; font-size:13px; color:#333; background:#fff; min-width:0; }
.mc-footer-subscribe-btn { background:var(--main-color-one, #1A85ED); color:#fff; border:none; padding:10px 15px; cursor:pointer; transition:background .2s; font-size:16px; flex-shrink:0; }
.mc-footer-subscribe-btn:hover { background:var(--main-color-four, #1266B8); }
/* Bottom */
.mc-footer-bottom { background:var(--section-bg-3, #F4F8FB); }
.mc-footer-copyright { font-size:13px; color:#888; text-align:center; padding:16px 0; }
.mc-footer-copyright a { color:var(--main-color-one, #1A85ED); text-decoration:none; }

/* ── Responsive ── */
@media (max-width:1024px) {
    .mc-cat-grid { grid-template-columns:repeat(4,1fr); }
    .mc-footer-main { grid-template-columns:repeat(2,1fr); }
    .mc-footer-top { gap:16px; }
}
@media (max-width:768px) {
    .mc-hero-inner { flex-direction:column; padding:40px 0; }
    .mc-hero-left,.mc-hero-right { flex:none; width:100%; }
    .mc-hero-right { padding-left:0; }
    .mc-catbanner-row { grid-template-columns:1fr; }
    .mc-promo-row { grid-template-columns:1fr; }
    .mc-news-grid { grid-template-columns:1fr; }
    .mc-services-grid { grid-template-columns:repeat(2,1fr); }
    .mc-footer-main { grid-template-columns:1fr; }
    .mc-footer-top { flex-direction:column; align-items:flex-start; gap:14px; }
    .mc-footer-logo-wrap { align-items:flex-start; text-align:left; }
    .mc-footer-payment { width:100%; }
    .mc-footer-payment-icons { justify-content:flex-start; }
    .mc-release-card { flex-direction:column; padding:32px 24px; }
    .mc-cat-grid { grid-template-columns:repeat(2,1fr); }
    .shop-contents-wrapper { flex-direction:column; }
}

/* =============================================================
   ELECTRO THEME — Dashboard & Auth CSS  (el-dash-* / el-auth-*)
   Accent: var(--main-color-one, #1A85ED) | Light theme
   ============================================================= */

/* ── Dashboard Header ── */
.mc-dash-header { background:var(--section-bg-6, #EAF2F8); border-bottom:1px solid var(--section-bg-6, #EAF2F8); padding:32px 0 24px; }
.mc-dash-header h2 { font-size:24px; font-weight:700; color:#1a1a1a; margin:0 0 8px; }
.mc-dash-breadcrumb { display:flex; align-items:center; gap:8px; font-size:13px; color:#888; }
.mc-dash-breadcrumb a { color:var(--main-color-one, #1A85ED); font-weight:600; text-decoration:none; }
.mc-dash-breadcrumb a:hover { text-decoration:underline; }

/* ── Sidebar ── */
.mc-dash-sidebar { background:#fff; border:1px solid var(--section-bg-6, #EAF2F8); border-radius:10px; overflow:hidden; }
.mc-dash-user-info { text-align:center; padding:24px 20px 20px; border-bottom:1px solid var(--section-bg-6, #EAF2F8); }
.mc-dash-avatar { width:64px; height:64px; border-radius:50%; background:var(--main-color-one, #1A85ED); color:#fff; font-size:26px; font-weight:800; display:flex; align-items:center; justify-content:center; margin:0 auto 10px; }
.mc-dash-name { font-size:15px; font-weight:700; color:#1a1a1a; }
.mc-dash-email { font-size:12px; color:#888; margin-top:4px; }
.mc-dash-nav { list-style:none; padding:0; margin:0; }
.mc-dash-nav li { border-bottom:1px solid var(--section-bg-3, #F4F8FB); }
.mc-dash-nav li:last-child { border-bottom:none; }
.mc-dash-nav a { display:flex; align-items:center; gap:10px; padding:13px 20px; font-size:14px; font-weight:600; color:#444; text-decoration:none; transition:background .2s,color .2s; border-left:3px solid transparent; }
.mc-dash-nav a:hover { background:var(--section-bg-6, #EAF2F8); color:var(--main-color-one, #1A85ED); }
.mc-dash-nav a.active { background:var(--section-bg-6, #EAF2F8); color:var(--main-color-one, #1A85ED); border-left-color:var(--main-color-one, #1A85ED); }
.mc-dash-nav a i { font-size:18px; width:22px; flex-shrink:0; }

/* ── Content Cards ── */
.mc-dash-card { background:#fff; border:1px solid var(--section-bg-6, #EAF2F8); border-radius:10px; padding:24px; margin-bottom:24px; }
.mc-dash-card-title { font-size:16px; font-weight:700; color:#1a1a1a; padding-bottom:14px; margin-bottom:18px; border-bottom:2px solid var(--section-bg-6, #EAF2F8); display:flex; align-items:center; gap:8px; }
.mc-dash-card-title i { color:var(--main-color-one, #1A85ED); }

/* ── Stat Cards ── */
.mc-dash-stat { background:#fff; border:1px solid var(--section-bg-6, #EAF2F8); border-radius:10px; padding:20px; text-align:center; }
.mc-dash-stat i { font-size:36px; display:block; margin-bottom:8px; color:var(--main-color-one, #1A85ED); }
.mc-dash-stat-value { font-size:26px; font-weight:800; color:#1a1a1a; }
.mc-dash-stat-label { font-size:12px; color:#888; font-weight:700; margin-top:4px; }

/* ── Table ── */
.mc-dash-table { width:100%; border-collapse:collapse; font-size:14px; }
.mc-dash-table th { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.6px; color:#888; padding:10px 14px; border-bottom:2px solid var(--section-bg-6, #EAF2F8); text-align:left; white-space:nowrap; }
.mc-dash-table td { padding:13px 14px; border-bottom:1px solid var(--section-bg-3, #F4F8FB); color:#333; vertical-align:middle; }
.mc-dash-table tbody tr:last-child td { border-bottom:none; }
.mc-dash-table tbody tr:hover td { background:var(--section-bg-3, #F4F8FB); }

/* ── Badges ── */
.mc-badge { display:inline-flex; align-items:center; padding:3px 10px; border-radius:20px; font-size:11px; font-weight:700; text-transform:capitalize; }
.mc-badge-success { background:#d1fae5; color:#065f46; }
.mc-badge-warning { background:#fef3c7; color:#92400e; }
.mc-badge-info { background:#dbeafe; color:#1e40af; }
.mc-badge-muted { background:#f3f4f6; color:#6b7280; }
.mc-badge-danger { background:#fee2e2; color:#991b1b; }

/* ── Buttons ── */
.mc-btn { display:inline-flex; align-items:center; gap:6px; padding:8px 18px; border-radius:6px; font-size:14px; font-weight:600; cursor:pointer; border:none; transition:all .2s; text-decoration:none; line-height:1.4; }
.mc-btn-primary { background:var(--main-color-one, #1A85ED); color:#fff; }
.mc-btn-primary:hover { background:var(--main-color-four, #1266B8); color:#fff; }
.mc-btn-outline { background:transparent; color:var(--main-color-one, #1A85ED); border:1.5px solid var(--main-color-one, #1A85ED); }
.mc-btn-outline:hover { background:var(--main-color-one, #1A85ED); color:#fff; }
.mc-btn-ghost { background:#f5f5f5; color:#444; }
.mc-btn-ghost:hover { background:#ebebeb; color:#1a1a1a; }
.mc-btn-sm { padding:5px 12px; font-size:12px; }
.mc-btn-block { width:100%; justify-content:center; }

/* ── Form Fields ── */
.mc-form-label { font-size:13px; font-weight:600; color:#1a1a1a; margin-bottom:6px; display:block; }
.mc-form-required { color:var(--main-color-one, #1A85ED); }
.mc-form-input, .mc-form-select, .mc-form-textarea { width:100%; padding:10px 14px; border:1.5px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white); border-radius:6px; font-size:14px; color:#333; outline:none; transition:border-color .2s; background:#fff; font-family:inherit; }
.mc-form-input:focus, .mc-form-select:focus, .mc-form-textarea:focus { border-color:var(--main-color-one, #1A85ED); }
.mc-form-textarea { resize:vertical; height:auto; }
.mc-form-select { cursor:pointer; }

/* ── Auth Pages ── */
.mc-auth-hero { background:var(--section-bg-6, #EAF2F8); border-bottom:1px solid var(--section-bg-6, #EAF2F8); padding:36px 0 28px; }
.mc-auth-hero h2 { font-size:26px; font-weight:700; color:#1a1a1a; margin:0 0 8px; }
.mc-auth-card { background:#fff; border:1px solid var(--section-bg-6, #EAF2F8); border-radius:12px; padding:40px 36px; box-shadow:0 4px 24px color-mix(in srgb, var(--main-color-one, #1A85ED) 6%, transparent); }
.mc-auth-icon { width:72px; height:72px; border-radius:50%; background:var(--section-bg-6, #EAF2F8); display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }

/* ── Dashboard / Auth Responsive ── */
@media (max-width:991px) { .mc-dash-sidebar { margin-bottom:24px; } }
@media (max-width:576px) { .mc-auth-card { padding:28px 20px; } }

/* =============================================================
   ELECTRO THEME — Blog Page CSS  (el-blog-*)
   Accent: var(--main-color-one, #1A85ED) | Light theme
   ============================================================= */

/* ── Blog Hero / Hero bar ── */
.mc-blog-hero { background:var(--section-bg-6, #EAF2F8); border-bottom:1px solid var(--section-bg-6, #EAF2F8); padding:36px 0 28px; }
.mc-blog-hero h1, .mc-blog-hero h2 { font-size:26px; font-weight:700; color:#1a1a1a; margin:0 0 8px; }

/* ── Blog Card ── */
.mc-blog-card { background:#fff; border:1px solid var(--section-bg-6, #EAF2F8); border-radius:10px; overflow:hidden; transition:box-shadow .2s; }
.mc-blog-card:hover { box-shadow:0 6px 24px color-mix(in srgb, var(--main-color-one, #1A85ED) 10%, transparent); }
.mc-blog-thumb { display:block; width:100%; height:200px; overflow:hidden; background:var(--section-bg-6, #EAF2F8); position:relative; }
.mc-blog-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .3s; display:block; }
.mc-blog-card:hover .mc-blog-thumb img { transform:scale(1.04); }
.mc-blog-thumb-ph { width:100%; height:100%; display:flex; align-items:center; justify-content:center; color:var(--section-bg-6, #EAF2F8); font-size:48px; }
.mc-blog-cat-badge { position:absolute; top:12px; left:12px; background:var(--main-color-one, #1A85ED); color:#fff; font-size:11px; font-weight:700; padding:3px 10px; border-radius:20px; text-decoration:none; }
.mc-blog-body { padding:20px; }
.mc-blog-meta { display:flex; flex-wrap:wrap; gap:14px; font-size:12px; color:#888; margin-bottom:10px; }
.mc-blog-meta i { color:var(--main-color-one, #1A85ED); }
.mc-blog-meta a { color:#888; text-decoration:none; }
.mc-blog-title { font-size:15px; font-weight:700; color:#1a1a1a; line-height:1.4; margin:0 0 8px; }
.mc-blog-title a { color:inherit; text-decoration:none; }
.mc-blog-title a:hover { color:var(--main-color-one, #1A85ED); }
.mc-blog-excerpt { font-size:13px; color:#666; line-height:1.7; margin:0 0 14px; }
.mc-blog-read-more { font-size:13px; font-weight:700; color:var(--main-color-one, #1A85ED); text-decoration:none; display:inline-flex; align-items:center; gap:4px; }
.mc-blog-read-more:hover { color:var(--main-color-four, #1266B8); }

/* ── Blog Sidebar ── */
.mc-blog-sidebar-card { background:#fff; border:1px solid var(--section-bg-6, #EAF2F8); border-radius:10px; padding:20px; margin-bottom:20px; }
.mc-blog-sidebar-title { font-size:14px; font-weight:700; color:#1a1a1a; padding-bottom:12px; margin-bottom:14px; border-bottom:2px solid var(--section-bg-6, #EAF2F8); }
.mc-blog-search-row { display:flex; gap:8px; }
.mc-blog-search-row input { flex:1; padding:9px 12px; border:1.5px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white); border-radius:6px; font-size:13px; outline:none; font-family:inherit; transition:border-color .2s; }
.mc-blog-search-row input:focus { border-color:var(--main-color-one, #1A85ED); }
.mc-blog-search-btn { background:var(--main-color-one, #1A85ED); border:none; color:#fff; padding:0 14px; border-radius:6px; cursor:pointer; font-size:15px; transition:background .2s; flex-shrink:0; }
.mc-blog-search-btn:hover { background:var(--main-color-four, #1266B8); }

.mc-blog-cat-list { list-style:none; padding:0; margin:0; }
.mc-blog-cat-item { border-bottom:1px dashed var(--section-bg-6, #EAF2F8); }
.mc-blog-cat-item:last-child { border-bottom:none; }
.mc-blog-cat-link { display:flex; justify-content:space-between; align-items:center; padding:8px 6px; font-size:13px; color:#444; text-decoration:none; transition:color .2s; }
.mc-blog-cat-link:hover, .mc-blog-cat-link.active { color:var(--main-color-one, #1A85ED); font-weight:700; }
.mc-blog-cat-count { background:var(--section-bg-6, #EAF2F8); color:var(--main-color-one, #1A85ED); font-size:11px; font-weight:700; padding:2px 8px; border-radius:20px; }

.mc-blog-tag-cloud { display:flex; flex-wrap:wrap; gap:8px; }
.mc-blog-tag { font-size:12px; padding:4px 12px; border-radius:20px; border:1.5px solid var(--section-bg-6, #EAF2F8); color:#555; text-decoration:none; transition:all .2s; }
.mc-blog-tag:hover { background:var(--main-color-one, #1A85ED); color:#fff; border-color:var(--main-color-one, #1A85ED); }

.mc-blog-recent-item { display:flex; gap:12px; padding:10px 0; border-bottom:1px dashed var(--section-bg-6, #EAF2F8); }
.mc-blog-recent-item:last-child { border-bottom:none; }
.mc-blog-recent-thumb { width:64px; height:64px; border-radius:6px; overflow:hidden; flex-shrink:0; }
.mc-blog-recent-thumb img { width:100%; height:100%; object-fit:cover; }
.mc-blog-recent-title { font-size:13px; font-weight:600; color:#1a1a1a; text-decoration:none; display:block; line-height:1.4; }
.mc-blog-recent-title:hover { color:var(--main-color-one, #1A85ED); }
.mc-blog-recent-date { font-size:11px; color:#888; margin-top:4px; }

/* ── Blog Single Article ── */
.mc-blog-article { background:#fff; border:1px solid var(--section-bg-6, #EAF2F8); border-radius:10px; overflow:hidden; }
.mc-blog-article-img { width:100%; max-height:420px; overflow:hidden; display:block; }
.mc-blog-article-img img { width:100%; height:100%; object-fit:cover; display:block; }
.mc-blog-article-body { padding:32px; }
.mc-blog-article h1 { font-size:26px; font-weight:800; color:#1a1a1a; line-height:1.3; margin:0 0 16px; }
.mc-blog-article-divider { padding:16px 0 20px; margin:0 0 24px; border-bottom:1px solid var(--section-bg-6, #EAF2F8); display:flex; flex-wrap:wrap; align-items:center; gap:16px; font-size:13px; color:#888; }
.mc-blog-article-divider i { color:var(--main-color-one, #1A85ED); }
.mc-blog-article-content { font-size:15px; line-height:1.85; color:#333; }
.mc-blog-article-footer { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; margin-top:32px; padding-top:20px; border-top:1px solid var(--section-bg-6, #EAF2F8); }
.mc-blog-article-tag { display:inline-flex; align-items:center; gap:4px; padding:5px 14px; background:var(--section-bg-6, #EAF2F8); border:1.5px solid var(--section-bg-6, #EAF2F8); border-radius:50px; font-size:12px; font-weight:600; color:var(--main-color-one, #1A85ED); text-decoration:none; }
.mc-blog-article-tag:hover { background:var(--main-color-one, #1A85ED); color:#fff; }

/* ── Comments ── */
.mc-blog-comments-card { background:#fff; border:1px solid var(--section-bg-6, #EAF2F8); border-radius:10px; padding:28px; margin-top:24px; }
.mc-blog-comments-title { font-size:16px; font-weight:700; color:#1a1a1a; margin:0 0 20px; }
.mc-comment-item { display:flex; gap:14px; padding:16px 0; border-bottom:1px dashed var(--section-bg-6, #EAF2F8); }
.mc-comment-item:last-child { border-bottom:none; }
.mc-comment-avatar { width:44px; height:44px; border-radius:50%; background:var(--main-color-one, #1A85ED); color:#fff; font-size:18px; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; overflow:hidden; }
.mc-comment-avatar img { width:100%; height:100%; object-fit:cover; }
.mc-comment-name { font-weight:700; font-size:14px; color:#1a1a1a; }
.mc-comment-date { font-size:11px; color:#888; margin-bottom:6px; }
.mc-comment-body { font-size:14px; color:#333; margin:0 0 8px; }
.mc-comment-reply-btn { background:none; border:none; padding:0; cursor:pointer; font-size:12px; color:var(--main-color-one, #1A85ED); font-weight:700; }
.mc-comment-replies { padding-left:20px; border-left:2px solid var(--section-bg-6, #EAF2F8); margin-top:12px; }

/* ── Comment Form ── */
.mc-comment-form { background:#fff; border:1px solid var(--section-bg-6, #EAF2F8); border-radius:10px; padding:28px; margin-top:24px; }
.mc-comment-form-title { font-size:16px; font-weight:700; color:#1a1a1a; margin:0 0 20px; }

/* ── Blog empty / no posts ── */
.mc-blog-empty { text-align:center; padding:60px; border:2px dashed var(--section-bg-6, #EAF2F8); border-radius:10px; }
.mc-blog-empty i { font-size:48px; color:var(--section-bg-6, #EAF2F8); display:block; margin-bottom:12px; }
.mc-blog-empty p { color:#888; font-size:14px; }

/* ── Blog Responsive ── */
@media (max-width:576px) {
    .mc-blog-article-body { padding:20px; }
    .mc-blog-article h1 { font-size:20px; }
}

/* =============================================================
   ELECTRO THEME — Shop / Cart / Checkout / Product Detail CSS
   Accent: var(--main-color-one, #1A85ED) | Styles all generic Nazmart template classes
   ============================================================= */

/* ── Shared Form Controls ── */
.form--control {
    width:100%; padding:10px 14px; border:1.5px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white); border-radius:6px;
    font-size:14px; color:#1a1a1a; background:#fff; outline:none;
    transition:border-color .2s;
}
.form--control:focus { border-color:var(--main-color-one, #1A85ED); }
.form--control[readonly] { background:#f9f9f9; color:#888; cursor:not-allowed; }
.form--message { resize:vertical; min-height:110px; }
.label-title { font-size:13px; font-weight:600; color:#1a1a1a; display:block; }
.form--input { border:none; border-bottom:1.5px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white); padding:4px 8px; font-size:13px; color:#1a1a1a; background:transparent; outline:none; min-width:80px; }
.form--input:focus { border-color:var(--main-color-one, #1A85ED); }

/* ── Shared Buttons (cmn-btn) ── */
.cmn-btn {
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:12px 28px; font-size:14px; font-weight:700; border-radius:4px;
    text-decoration:none; cursor:pointer; border:2px solid transparent; transition:all .2s; white-space:nowrap;
}
.cmn-btn-bg-1, .cmn-btn-bg-heading { background:var(--main-color-one, #1A85ED); color:#fff; border-color:var(--main-color-one, #1A85ED); }
.cmn-btn-bg-1:hover, .cmn-btn-bg-heading:hover { background:var(--main-color-four, #1266B8); border-color:var(--main-color-four, #1266B8); color:#fff; }
.cmn-btn-bg-steam { background:#1a1a1a; color:#fff; border-color:#1a1a1a; }
.cmn-btn-bg-steam:hover { background:var(--main-color-one, #1A85ED); border-color:var(--main-color-one, #1A85ED); color:#fff; }
.cmn-btn-outline-one { background:#fff; color:var(--main-color-one, #1A85ED); border-color:var(--main-color-one, #1A85ED); }
.cmn-btn-outline-one:hover { background:var(--main-color-one, #1A85ED); color:#fff; }
.w-100 { width:100%; }
.radius-0 { border-radius:0; }

/* ── Shop Sidebar ── */
.shop-sidebar-content { min-width:260px; max-width:260px; }
.shop-close-main { padding-bottom:8px; }
.close-bars { display:none; }
.single-shop-left { padding-bottom:4px; }
.shop-left-title .title, .shop-left-title h5.title { font-size:14px; font-weight:700; color:#1a1a1a; margin:0 0 14px; text-transform:uppercase; letter-spacing:.03em; }
.title-borders { padding-bottom:10px; border-bottom:2px solid var(--main-color-one, #1A85ED); display:inline-block; }
.shop-left-list { padding-top:4px; }

/* Sidebar filter lists */
.category-lists, .tag-lists { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:6px; }
.category-lists li.list, .tag-lists li.list { cursor:pointer; }
.category-lists li.list a, .tag-lists li.list a {
    display:flex; justify-content:space-between; align-items:center;
    font-size:13px; color:#555; text-decoration:none; padding:5px 10px; border-radius:4px; transition:all .2s;
}
.category-lists li.list a:hover, .category-lists li.list.active a,
.tag-lists li.list a:hover, .tag-lists li.list.active a { background:var(--section-bg-6, #EAF2F8); color:var(--main-color-one, #1A85ED); font-weight:600; }

/* Size lists */
.size-lists { list-style:none; padding:0; margin:0; display:flex; flex-wrap:wrap; gap:8px; }
.size-lists li.list {
    min-width:36px; height:36px; display:flex; align-items:center; justify-content:center;
    border:1.5px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white); border-radius:4px; cursor:pointer; transition:all .2s; padding:0 8px; font-size:12px; font-weight:600; color:#555;
}
.size-lists li.list:hover, .size-lists li.list.active { border-color:var(--main-color-one, #1A85ED); background:var(--main-color-one, #1A85ED); color:#fff; }
.size-lists li.list.disabled { opacity:.4; pointer-events:none; }

/* Color lists */
.color-lists { list-style:none; padding:0; margin:0; display:flex; flex-wrap:wrap; gap:8px; }
.color-lists li.list { cursor:pointer; }
.color-lists li.list a {
    display:block; width:28px; height:28px; border-radius:4px; border:2px solid transparent; transition:border-color .2s;
}
.color-lists li.list.active a, .color-lists li.list:hover a { border-color:#1a1a1a; }

/* Rating filter */
.filter-lists { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; }
.filter-lists li.list { display:flex; gap:2px; align-items:center; cursor:pointer; padding:4px 6px; border-radius:4px; transition:background .2s; }
.filter-lists li.list:hover, .filter-lists li.list.active { background:var(--section-bg-6, #EAF2F8); }
.filter-lists li.list a i { color:var(--main-color-two, #326DE4); font-size:14px; }

/* Sidebar search */
.single-shop-left-search-input { display:flex; border:1.5px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white); border-radius:6px; overflow:hidden; }
.single-shop-left-search-input input { flex:1; border:none; padding:10px 14px; font-size:13px; color:#1a1a1a; outline:none; }
.single-shop-left-search-input button { background:var(--main-color-one, #1A85ED); color:#fff; border:none; padding:0 14px; cursor:pointer; font-size:15px; }

/* Price range labels */
.ui-range-slider-footer { padding-top:12px; }
.ui-range-values { display:flex; align-items:center; gap:4px; font-size:13px; color:#555; }
.ui-price-title { font-weight:600; }
.ui-range-value-min, .ui-range-value-max { display:inline-flex; align-items:center; gap:2px; }

/* ── Shop Topbar (filter bar) ── */
.shop-right {
    display:flex; align-items:center; justify-content:flex-end; gap:16px; flex-wrap:wrap; padding:12px 0;
}
.showing-results { font-size:13px; color:#888; white-space:nowrap; }
.single-shops { display:flex; align-items:center; }
.shop-flex-icon { list-style:none; padding:0; margin:0; display:flex; gap:4px; }
.shop-icons { cursor:pointer; }
.shop-icons a.icon {
    display:flex; align-items:center; justify-content:center; width:34px; height:34px;
    border:1.5px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white); border-radius:4px; color:#666; font-size:16px; text-decoration:none; transition:all .2s;
}
.shop-icons.active a.icon, .shop-icons:hover a.icon { background:var(--main-color-one, #1A85ED); border-color:var(--main-color-one, #1A85ED); color:#fff; }

/* Active filter chips */
.selectder-filter-contents { display:flex; align-items:center; gap:10px; flex-wrap:wrap; padding:10px 0; font-size:13px; }
.selected-clear-items { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.selected-flex-list { list-style:none; padding:0; margin:0; display:flex; flex-wrap:wrap; gap:6px; }
.click-hide { display:inline-flex; align-items:center; gap:4px; padding:3px 10px; background:var(--section-bg-6, #EAF2F8); border:1px solid var(--section-bg-6, #EAF2F8); border-radius:50px; font-size:12px; font-weight:600; color:var(--main-color-one, #1A85ED); cursor:pointer; }
.click-hide-parent { font-size:13px; color:#666; font-weight:600; text-decoration:underline; cursor:pointer; }

/* ── Cart Table ── */
.custom--table { width:100%; border-collapse:collapse; }
.custom--table.table-border { border:1px solid var(--section-bg-6, #EAF2F8); }
.radius-10 { border-radius:10px; overflow:hidden; }
.custom--table thead.head-bg tr { background:var(--section-bg-6, #EAF2F8); }
.custom--table thead tr th {
    padding:14px 16px; font-size:13px; font-weight:700; color:#1a1a1a; text-align:left;
    border-bottom:2px solid var(--section-bg-6, #EAF2F8); white-space:nowrap;
}
.custom--table tbody tr { border-bottom:1px solid #f5f5f5; transition:background .15s; }
.custom--table tbody tr:hover { background:#fafafa; }
.custom--table tbody tr td { padding:16px; font-size:14px; color:#333; vertical-align:middle; }
.product-name-table { display:flex; align-items:center; gap:14px; }
.thumbs.bg-image {
    width:70px; height:70px; flex-shrink:0; border-radius:8px; background-size:cover;
    background-position:center; background-color:#f5f5f5; border:1px solid var(--section-bg-6, #EAF2F8);
}
.carts-contents { display:flex; flex-direction:column; gap:4px; }
.name-title { font-size:14px; font-weight:600; color:#1a1a1a; text-decoration:none; line-height:1.4; display:block; }
.name-title:hover { color:var(--main-color-one, #1A85ED); }
.name-subtitle { font-size:12px; color:#888; }
.price-td { font-size:14px; font-weight:600; color:var(--main-color-one, #1A85ED); }
/* Quantity controls */
.product-quantity { display:flex; align-items:center; gap:0; border:1.5px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white); border-radius:6px; overflow:hidden; width:fit-content; }
.substract, .plus {
    display:flex; align-items:center; justify-content:center; width:34px; height:34px;
    background:#f9f9f9; cursor:pointer; border:none; color:#555; font-size:14px; flex-shrink:0; transition:background .2s;
}
.substract:hover, .plus:hover { background:var(--main-color-one, #1A85ED); color:#fff; }
.quantity-input {
    width:50px; height:34px; text-align:center; border:none; border-left:1.5px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white);
    border-right:1.5px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white); font-size:14px; font-weight:600; color:#1a1a1a;
    background:#fff; outline:none; -moz-appearance:textfield;
}
.quantity-input::-webkit-inner-spin-button, .quantity-input::-webkit-outer-spin-button { -webkit-appearance:none; }
/* Action icons */
.close-table-cart, .close-table-wishlist {
    display:flex; align-items:center; justify-content:center; width:34px; height:34px;
    background:#fee2e2; border-radius:50%; cursor:pointer; color:#dc2626; font-size:14px;
    transition:background .2s, transform .15s; flex-shrink:0;
}
.close-table-cart:hover, .close-table-wishlist:hover { background:#fecaca; transform:scale(1.1); }
.move-to-wishlist {
    display:flex; align-items:center; justify-content:center; width:34px; height:34px;
    background:#dbeafe; border-radius:50%; cursor:pointer; color:#1e40af; font-size:15px;
    transition:background .2s, transform .15s; flex-shrink:0;
}
.move-to-wishlist:hover { background:#bfdbfe; transform:scale(1.1); }
/* Cart bottom buttons */
.table-update-btn { display:flex; gap:12px; flex-wrap:wrap; margin-top:20px; }
.btn-table {
    display:inline-flex; align-items:center; gap:6px; padding:10px 22px; font-size:13px;
    font-weight:700; border-radius:4px; text-decoration:none; cursor:pointer; transition:all .2s;
}
.btn-border-1 { background:#fff; color:var(--main-color-one, #1A85ED); border:2px solid var(--main-color-one, #1A85ED); }
.btn-border-1:hover { background:var(--main-color-one, #1A85ED); color:#fff; }
.btn-clear { background:#fff; color:#1a1a1a; border:2px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white); }
.btn-clear:hover { background:#1a1a1a; color:#fff; border-color:#1a1a1a; }

/* ── Cart / Checkout Summary Panel ── */
.coupon-wrapper, .checkout-order-summery {
    background:#fff; border:1.5px solid var(--section-bg-6, #EAF2F8); border-radius:10px; overflow:hidden;
}
.coupon-contents, .order-summery-contents { padding:24px; }
.coupon-padding { padding:24px; }
.coupon-contents-title, .summery-title {
    font-size:18px; font-weight:700; color:#1a1a1a; margin:0 0 4px;
}
.coupon-contents-details { margin-top:12px; }
.coupon-contents-details-list { list-style:none; padding:0; margin:0; }
.coupon-border { border-bottom:1px solid var(--section-bg-6, #EAF2F8); padding-bottom:14px; margin-bottom:14px; }
.coupon-contents-details-list-item {
    display:flex; justify-content:space-between; align-items:center; padding:8px 0;
    font-size:14px; color:#555;
}
.coupon-contents-details-list-item h6 { margin:0; font-size:14px; font-weight:600; color:#1a1a1a; }
.coupon-contents-details-list-item-price { font-weight:700; color:#1a1a1a; }
.coupon-title { font-size:15px; font-weight:700; color:#1a1a1a; margin:0; }
.coupon-price { font-size:17px; font-weight:700; color:var(--main-color-one, #1A85ED); }
.fw-500 { font-weight:500; }
.color-heading { color:#1a1a1a; }
.color-light { color:#888; }
/* Coupon input row */
.coupon-contents-form { display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.coupon-contents-form .single-input { flex:1; min-width:160px; }
.coupon-btn {
    padding:10px 20px; background:#1a1a1a; color:#fff; border:none; border-radius:4px;
    font-size:13px; font-weight:700; cursor:pointer; transition:background .2s; white-space:nowrap;
}
.coupon-btn:hover { background:var(--main-color-one, #1A85ED); }
/* Shipping radio */
.coupon-radio-item { display:flex; align-items:center; gap:8px; }
.coupon-radio-item input[type=radio] { accent-color:var(--main-color-one, #1A85ED); }
/* Checkout cart items */
.single-checkout-cart-items { padding-bottom:12px; margin-bottom:12px; border-bottom:1px dashed var(--section-bg-6, #EAF2F8); }
.single-checkout-cart-items:last-child { border-bottom:none; }
.single-check-carts { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }
.check-cart-flex-contents { display:flex; gap:12px; align-items:flex-start; flex:1; }
.checkout-cart-thumb { width:56px; height:56px; flex-shrink:0; border-radius:6px; overflow:hidden; border:1px solid var(--section-bg-6, #EAF2F8); }
.checkout-cart-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.checkout-cart-img-contents { display:flex; flex-direction:column; gap:4px; }
.checkout-cart-title { font-size:13px; font-weight:600; color:#1a1a1a; margin:0; }
.checkout-cart-title a { color:#1a1a1a; text-decoration:none; }
.checkout-cart-title a:hover { color:var(--main-color-one, #1A85ED); }
.checkout-cart-price { font-size:14px; font-weight:700; color:var(--main-color-one, #1A85ED); white-space:nowrap; flex-shrink:0; }
.product-items { font-size:12px; color:#888; }

/* ── Checkout Left Side ── */
.checkout-wrapper { background:#fff; border:1.5px solid var(--section-bg-6, #EAF2F8); border-radius:10px; padding:28px; }
.checkout-inner-title { font-size:18px; font-weight:700; color:#1a1a1a; margin:0 0 4px; }
.checkout-form-flex { display:grid; grid-template-columns:1fr; gap:0; }
@media (min-width:768px) { .checkout-form-flex { grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:16px; } }
.single-input { display:flex; flex-direction:column; }
.payment-inlines { margin-top:24px; }
.payment-label { font-size:14px; font-weight:700; color:#1a1a1a; margin:0 0 12px; }
.payment-card { display:flex; flex-direction:column; gap:10px; }
.checkbox-inlines { display:flex; align-items:center; gap:10px; margin-top:12px; }
.check-input { width:16px; height:16px; accent-color:var(--main-color-one, #1A85ED); cursor:pointer; flex-shrink:0; }
.checkbox-label { font-size:13px; color:#555; cursor:pointer; }
.checkbox-label .terms-condition { color:var(--main-color-one, #1A85ED); font-weight:600; text-decoration:underline; }
.create-account-wrapper { padding-top:8px; }
.create-accounts { font-size:14px; font-weight:600; color:var(--main-color-one, #1A85ED); cursor:pointer; text-decoration:underline; }
.checkout-form-open { margin-top:16px; }
.cash-on-delivery { margin-top:12px; }

/* ── Product Details ── */
.single-shop-details-wrapper { display:flex; flex-direction:column; gap:16px; }
.details-title { font-size:26px; font-weight:800; color:#1a1a1a; margin:0; line-height:1.3; }
.status-details { display:flex; align-items:center; gap:20px; }
.status-details-title { font-size:13px; font-weight:600; color:#888; margin:0; }
.color-stock .text-success { color:#16a34a; font-weight:700; }
.color-stock .text-danger { color:#dc2626; font-weight:700; }
.price-update-through { display:flex; align-items:baseline; gap:12px; flex-wrap:wrap; }
.flash-prices { font-size:28px; font-weight:800; color:var(--main-color-one, #1A85ED); margin:0; }
.flash-old-prices { font-size:16px; color:#bbb; text-decoration:line-through; }
/* Attribute selector row */
.single-input-list { display:flex; align-items:center; gap:16px; flex-wrap:wrap; padding:8px 0; }
.input-title { display:flex; align-items:center; gap:8px; font-size:13px; white-space:nowrap; }
/* Quantity area */
.quantity-area { padding-top:8px; }
.quantity-flex { display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
.quantity-title { font-size:13px; font-weight:600; color:#1a1a1a; }
.stock-available { font-size:13px; font-weight:700; text-decoration:none; }
.quantity-btn { display:flex; flex-wrap:wrap; gap:12px; margin-top:4px; }
.quantity-btn .btn-wrapper { flex:1; min-width:140px; }
/* Tab area */
.details-tab-wrapper { border:1px solid var(--section-bg-6, #EAF2F8); border-radius:10px; overflow:hidden; }
.details-tab { list-style:none; padding:0; margin:0; display:flex; background:var(--section-bg-6, #EAF2F8); border-bottom:2px solid var(--section-bg-6, #EAF2F8); }
.details-tab.details-tab-border li { }
.details-tab li {
    padding:14px 24px; font-size:14px; font-weight:600; color:#888; cursor:pointer;
    border-bottom:3px solid transparent; margin-bottom:-2px; transition:all .2s; user-select:none;
}
.details-tab li:hover { color:var(--main-color-one, #1A85ED); }
.details-tab li.active { color:var(--main-color-one, #1A85ED); border-bottom-color:var(--main-color-one, #1A85ED); background:#fff; }
/* Wishlist/compare row */
.name_badge { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }
.wishlist-compare-btn { display:flex; gap:10px; }
.btn-wishlist.share-icon {
    display:flex; align-items:center; justify-content:center; width:38px; height:38px;
    border:1.5px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white); border-radius:50%; text-decoration:none; color:#555; font-size:16px; transition:all .2s;
}
.btn-wishlist.share-icon:hover { background:var(--main-color-one, #1A85ED); border-color:var(--main-color-one, #1A85ED); color:#fff; }
/* Product meta */
.shop-border-top { border-top:1px solid var(--section-bg-6, #EAF2F8); }
.stock-category { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; }
.category-list { font-size:13px; color:#888; }
.category-list .list-item { font-weight:700; color:#1a1a1a; }
.category-list .list-item a { color:var(--main-color-one, #1A85ED); text-decoration:none; }
.delivery-options { display:flex; flex-direction:column; gap:12px; }
.delivery-item { display:flex; align-items:flex-start; gap:12px; }
.delivery-item .icon { width:36px; height:36px; background:var(--section-bg-6, #EAF2F8); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--main-color-one, #1A85ED); font-size:16px; flex-shrink:0; }
.delivery-item .content .title { font-size:13px; font-weight:700; color:#1a1a1a; margin:0 0 2px; }
.delivery-item .content p { font-size:12px; color:#888; margin:0; }
.details-checkout-shop { }
.guaranteed-checkout { font-size:13px; font-weight:700; color:#1a1a1a; display:block; margin-bottom:10px; }
.payment-list { list-style:none; padding:0; margin:0; display:flex; flex-wrap:wrap; gap:8px; }
.payment-list .single-list { }
.payment-list .single-list img { max-height:28px; width:auto; border:1px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white); border-radius:4px; padding:3px 8px; }
/* Specification table */
.specification-table { width:100%; border-collapse:collapse; font-size:14px; }
.specification-table th, .specification-table td { padding:10px 14px; border:1px solid var(--section-bg-6, #EAF2F8); }
.specification-table th { background:var(--section-bg-6, #EAF2F8); font-weight:700; color:#1a1a1a; }
.specification-table td { color:#555; }
/* badge */
.global-card-thumb-badge-box { display:inline-block; padding:3px 10px; border-radius:50px; font-size:11px; font-weight:700; }
.bg-color-new { background:#16a34a; color:#fff; }

/* ── Responsive Adjustments ── */
@media (max-width:768px) {
    .shop-sidebar-content { min-width:100%; max-width:100%; }
    .custom--table thead { display:none; }
    .custom--table tbody tr { display:block; padding:14px; border:1px solid var(--section-bg-6, #EAF2F8); border-radius:8px; margin-bottom:12px; }
    .custom--table tbody tr td { display:flex; justify-content:space-between; align-items:center; padding:6px 0; border:none; font-size:13px; }
    .custom--table tbody tr td::before { content:attr(data-label); font-weight:700; color:#888; font-size:12px; }
    .product-name-table { flex-direction:column; align-items:flex-start; }
    .quantity-btn { flex-direction:column; }
    .details-tab { flex-wrap:wrap; }
    .details-tab li { padding:10px 14px; font-size:13px; }
    .checkout-wrapper { padding:16px; }
    .coupon-contents { padding:16px; }
    .table-update-btn { flex-direction:column; }
    .btn-table { justify-content:center; }
}

/* ══════════════════════════════════════════════════════════
   Shop / Category — BakerCo-style Electro Design
   ══════════════════════════════════════════════════════════ */

/* Page Banner */
.mc-page-banner {
    background: var(--breadcrumb-bg, #F4F8FB);
    padding: 40px 0;
    border-bottom: 1px solid var(--section-bg-6, #EAF2F8);
    margin-bottom: 0;
}
.mc-page-banner-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 10px;
}
.mc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #888;
    flex-wrap: wrap;
}
.mc-breadcrumb a { color: var(--main-color-one, #1A85ED); text-decoration: none; }
.mc-breadcrumb a:hover { text-decoration: underline; }
.mc-breadcrumb-sep { color: #ccc; font-size: 11px; }

/* Shop layout spacing */
.mc-shop-layout { padding-top: 36px; padding-bottom: 80px; }

/* ── Sidebar Card ── */
.mc-sidebar-card {
    background: #fff;
    border: 1px solid var(--section-bg-6, #EAF2F8);
    border-radius: 10px;
    padding: 18px 16px;
    margin-bottom: 16px;
}
.mc-sidebar-title {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--section-bg-6, #EAF2F8);
}

/* Filter item row (category / rating row) */
.mc-filter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    cursor: pointer;
}
.mc-filter-count {
    font-size: 11px;
    color: #aaa;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 1px 7px;
    min-width: 22px;
    text-align: center;
}

/* Search bar */
.mc-search-bar {
    display: flex;
    border: 1.5px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white);
    border-radius: 6px;
    overflow: hidden;
}
.mc-search-bar input {
    flex: 1;
    border: none;
    padding: 8px 12px;
    font-size: 13px;
    outline: none;
    color: #333;
}
.mc-search-bar button {
    background: var(--main-color-one, #1A85ED);
    color: #fff;
    border: none;
    padding: 0 14px;
    cursor: pointer;
    font-size: 15px;
    transition: background .2s;
}
.mc-search-bar button:hover { background: var(--main-color-four, #1266B8); }

/* Price inputs */
.mc-price-inputs {
    display: flex;
    gap: 8px;
}
.mc-price-input {
    flex: 1;
    border: 1.5px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white);
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 13px;
    outline: none;
    color: #333;
    transition: border-color .2s;
    width: 100%;
}
.mc-price-input:focus { border-color: var(--main-color-one, #1A85ED); }

/* Clear filters link */
.mc-clear-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--main-color-one, #1A85ED);
    text-decoration: none;
    margin-top: 10px;
    cursor: pointer;
}
.mc-clear-link:hover { text-decoration: underline; }

/* Size list */
.mc-size-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.mc-size-item input[type=checkbox] { display: none; }
.mc-size-item label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 32px;
    padding: 0 8px;
    border: 1.5px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white);
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all .2s;
}
.mc-size-item input:checked + label {
    border-color: var(--main-color-one, #1A85ED);
    background: var(--section-bg-6, #EAF2F8);
    color: var(--main-color-one, #1A85ED);
}

/* Color list */
.mc-color-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.mc-color-item { position: relative; }
.mc-color-item input[type=checkbox] { display: none; }
.mc-color-item label {
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2.5px solid transparent;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
}
.mc-color-item input:checked + label {
    transform: scale(1.15);
    box-shadow: 0 0 0 2px var(--main-color-one, #1A85ED);
}

/* Tag list */
.mc-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.mc-tag-btn {
    background: #f5f5f5;
    border: 1.5px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all .2s;
}
.mc-tag-btn:hover,
.mc-tag-btn.active {
    background: var(--main-color-one, #1A85ED);
    border-color: var(--main-color-one, #1A85ED);
    color: #fff;
}

/* ── Topbar ── */
.mc-shop-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid var(--section-bg-6, #EAF2F8);
    border-radius: 8px;
    margin-bottom: 20px;
}
.mc-topbar-count {
    font-size: 13px;
    color: #888;
}
.mc-topbar-count strong { color: #1a1a1a; }
.mc-sort-select {
    border: 1.5px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white);
    border-radius: 6px;
    padding: 7px 32px 7px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    outline: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E") no-repeat right 10px center;
    -webkit-appearance: none;
    appearance: none;
}
.mc-sort-select:focus { border-color: var(--main-color-one, #1A85ED); }

/* ── Pagination ── */
.mc-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}
.mc-pg-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1.5px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white);
    border-radius: 6px;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.mc-pg-btn:hover { border-color: var(--main-color-one, #1A85ED); color: var(--main-color-one, #1A85ED); }
.mc-pg-btn.mc-pg-active { background: var(--main-color-one, #1A85ED); border-color: var(--main-color-one, #1A85ED); color: #fff; cursor: default; }
.mc-pg-dots { cursor: default; border-color: transparent; color: #aaa; }
.mc-pg-dots:hover { border-color: transparent; color: #aaa; }

/* ── Shop Grid ── */
@media (max-width: 991px) {
    .mc-page-banner-title { font-size: 22px; }
}
@media (max-width: 480px) {
}

/* ── Cart ── */
.mc-cart-section { padding: 60px 0; background: #f8f9fb; }
.mc-cart-layout { display: flex; gap: 28px; align-items: flex-start; }
.mc-cart-items { flex: 1; min-width: 0; }
.mc-cart-items--full { flex: none; width: 100%; }
.mc-cart-table-wrap { overflow-x: auto; background: #fff; border: 1px solid #e6eef6; border-radius: 12px; box-shadow: 0 2px 10px color-mix(in srgb, var(--main-color-one, #1A85ED) 6%, transparent); }
.mc-cart-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.mc-cart-table thead tr { background: var(--section-bg-6, #EAF2F8); }
.mc-cart-table th { padding: 14px 20px; text-align: left; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: #7a90a4; border-bottom: 1px solid #deeaf4; white-space: nowrap; }
.mc-cart-table td { padding: 18px 20px; border-bottom: 1px solid #f0f5fa; vertical-align: middle; color: #333; font-size: 14px; }
.mc-cart-table tbody tr { transition: background .15s; }
.mc-cart-table tbody tr:hover { background: #f5f9ff; }
.mc-cart-table tbody tr:last-child td { border-bottom: none; }

/* Column widths — Product takes remaining, others fixed */
.mc-cart-table th:nth-child(1),
.mc-cart-table td:nth-child(1) { min-width: 200px; }
.mc-cart-table th:nth-child(2),
.mc-cart-table td:nth-child(2) { width: 130px; text-align: right; white-space: nowrap; }
.mc-cart-table th:nth-child(2) { text-align: right; }
.mc-cart-table th:nth-child(3),
.mc-cart-table td:nth-child(3) { width: 160px; text-align: center; }
.mc-cart-table th:nth-child(3) { text-align: center; }
.mc-cart-table th:nth-child(4),
.mc-cart-table td:nth-child(4) { width: 130px; text-align: right; white-space: nowrap; }
.mc-cart-table th:nth-child(4) { text-align: right; }
.mc-cart-table th:nth-child(5),
.mc-cart-table td:nth-child(5) { width: 100px; text-align: center; }
.mc-cart-table th:nth-child(5) { text-align: center; }

.mc-cart-product { display: flex; align-items: center; gap: 16px; min-width: 0; }
.mc-cart-thumb { width: 80px; height: 80px; border-radius: 10px; flex-shrink: 0; background: #f2f6fa; background-size: cover; background-position: center; border: 1px solid #e0eaf4; }
.mc-cart-name { font-size: 15px; font-weight: 600; color: #1a1a1a; text-decoration: none; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 260px; }
.mc-cart-name:hover { color: var(--main-color-one, #1A85ED); }
.mc-cart-meta { font-size: 12px; color: #888; margin-top: 3px; }
.mc-cart-type { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 10px; border-radius: 20px; background: #dbeafe; color: #1e40af; margin-top: 5px; }

/* Qty stepper */
.mc-qty { display: inline-flex; align-items: center; border: 1.5px solid #d4e4f0; border-radius: 6px; overflow: hidden; background: #fff; }
.mc-qty .substract, .mc-qty .plus { width: 32px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; background: #f2f6fa; color: #555; font-size: 13px; transition: background .2s, color .2s; user-select: none; flex-shrink: 0; }
.mc-qty .substract:hover, .mc-qty .plus:hover { background: #dbeafe; color: var(--main-color-one, #1A85ED); }
.mc-qty .quantity-input { width: 46px; height: 36px; border: none; text-align: center; font-size: 14px; font-weight: 600; color: #1a1a1a; outline: none; background: #fff; }
.mc-qty .quantity-input::-webkit-inner-spin-button,
.mc-qty .quantity-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

/* Action buttons */
td.mc-cart-action { display: table-cell !important; vertical-align: middle; }
.mc-cart-action-inner { display: flex; align-items: center; justify-content: center; gap: 8px; }
.mc-cart-action .close-table-cart,
.mc-cart-action .close-table-wishlist { width: 34px; height: 34px; border-radius: 50%; background: #fee2e2; color: #dc2626; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 13px; transition: background .2s, transform .15s; flex-shrink: 0; }
.mc-cart-action .close-table-cart:hover, .mc-cart-action .close-table-wishlist:hover { background: #fecaca; transform: scale(1.1); }
.mc-cart-action .move-to-wishlist { width: 34px; height: 34px; border-radius: 50%; background: #dbeafe; color: #1e40af; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 13px; transition: background .2s, transform .15s; flex-shrink: 0; }
.mc-cart-action .move-to-wishlist:hover { background: #bfdbfe; transform: scale(1.1); }

/* Save-for-later (JS-injected heart button) */
.save-for-later-btn, .btn-save-later {
    width: 34px; height: 34px; border-radius: 50%; background: #dbeafe; color: #1e40af;
    border: none; outline: none; display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 15px; transition: background .2s, transform .15s; flex-shrink: 0;
    box-shadow: none; padding: 0; line-height: 1;
}
.save-for-later-btn:hover, .btn-save-later:hover { background: #bfdbfe; transform: scale(1.1); }

.mc-cart-actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.mc-cart-summary { width: 320px; flex-shrink: 0; background: #fff; border: 1px solid #e6eef6; border-radius: 12px; padding: 24px; box-shadow: 0 2px 10px color-mix(in srgb, var(--main-color-one, #1A85ED) 6%, transparent); position: sticky; top: 90px; }
.mc-cart-summary-title { font-size: 16px; font-weight: 700; color: #1a1a1a; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 2px solid var(--section-bg-6, #EAF2F8); display: flex; align-items: center; gap: 8px; }
.mc-cart-summary-title::before { content: ''; display: inline-block; width: 4px; height: 18px; background: var(--main-color-one, #1A85ED); border-radius: 2px; }
.mc-cart-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #f0f5fa; font-size: 14px; color: #555; }
.mc-cart-summary-total { font-weight: 700; font-size: 16px; color: #1a1a1a; border-bottom: none; padding-top: 14px; }
.mc-cart-summary-total span:last-child { color: var(--main-color-one, #1A85ED); font-size: 18px; }

/* ── Checkout ── */
.mc-checkout-section { padding: 40px 0 60px; }
.mc-checkout-layout { display: flex; gap: 28px; align-items: flex-start; }
.mc-checkout-left { flex: 1; min-width: 0; }
.mc-checkout-box { background: #fff; border: 1px solid var(--section-bg-6, #EAF2F8); border-radius: 10px; padding: 24px; margin-top: 16px; }
.mc-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mc-form-group { display: flex; flex-direction: column; }
.mc-checkout-link { font-size: 14px; color: var(--main-color-one, #1A85ED); font-weight: 600; cursor: pointer; text-decoration: none; }
.mc-checkout-link:hover { text-decoration: underline; }
.mc-checkout-login { background: var(--section-bg-6, #EAF2F8); border: 1px solid var(--section-bg-6, #EAF2F8); border-radius: 10px; padding: 24px; margin-bottom: 20px; }
.mc-checkout-login h4 { font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 16px; }
.mc-checkout-summary { width: 360px; flex-shrink: 0; background: #fff; border: 1px solid var(--section-bg-6, #EAF2F8); border-radius: 10px; padding: 24px; position: sticky; top: 90px; }
.mc-coupon-row { display: flex; gap: 8px; padding: 16px 0; border-bottom: 1px solid var(--section-bg-3, #F4F8FB); }
.mc-coupon-row .mc-form-input { flex: 1; }
.mc-checkout-items { padding: 16px 0; border-bottom: 1px solid var(--section-bg-3, #F4F8FB); }
.mc-checkout-item { display: flex; align-items: center; gap: 12px; padding: 8px 0; }
.mc-checkout-item-img { width: 52px; height: 52px; border-radius: 6px; overflow: hidden; border: 1px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white); flex-shrink: 0; }
.mc-checkout-item-img img { width: 100%; height: 100%; object-fit: cover; }
.mc-checkout-item-name { font-size: 13px; font-weight: 600; color: #1a1a1a; flex: 1; }
.mc-checkout-item-price { font-size: 13px; font-weight: 700; color: var(--main-color-one, #1A85ED); white-space: nowrap; }
.mc-summary-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--section-bg-3, #F4F8FB); font-size: 14px; color: #555; }
.mc-summary-total { font-weight: 700; font-size: 16px; color: #1a1a1a; border-top: 2px solid #1a1a1a; border-bottom: none; margin-top: 4px; padding-top: 12px; }
.mc-summary-total span:last-child { color: var(--main-color-one, #1A85ED); }
.mc-payment-section { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--section-bg-3, #F4F8FB); }
.mc-payment-section h6 { font-size: 13px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; }
.mc-check-row { display: flex; align-items: flex-start; gap: 8px; margin-top: 12px; font-size: 13px; color: #555; line-height: 1.5; }
.mc-check-row input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--main-color-one, #1A85ED); margin-top: 2px; flex-shrink: 0; }
.mc-terms-link { color: var(--main-color-one, #1A85ED); text-decoration: none; }
.mc-terms-link:hover { text-decoration: underline; }

/* Live state/city dropdown */
.live-dropdown {
    position: absolute;
    background: #fff;
    border: 1.5px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white);
    border-radius: 6px;
    width: 100%;
    z-index: 9999;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    top: 100%;
    left: 0;
}
.live-dropdown div { padding: 8px 12px; cursor: pointer; font-size: 13px; color: #333; }
.live-dropdown div:hover { background: #EAF2F8; color: #1A85ED; }

/* Shipping radio button */
.coupon-radio-item { display: flex; align-items: center; gap: 6px; }
.coupon-radio-item input[type=radio] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1.5px solid #ccc;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: border-color .2s;
    cursor: pointer;
}
.coupon-radio-item input[type=radio]::before {
    content: "";
    position: absolute;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    top: 3px;
    left: 3px;
    background: var(--main-color-one, #1A85ED);
    border-radius: 50%;
    transform: scale(0);
    transition: transform .2s;
}
.coupon-radio-item input[type=radio]:checked { border-color: var(--main-color-one, #1A85ED); }
.coupon-radio-item input[type=radio]:checked::before { transform: scale(1); }
.coupon-radio-item label { cursor: pointer; margin: 0; font-size: 13px; }

/* Payment gateway selector */
.payment-gateway-wrapper ul { display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; list-style: none; }
.payment-gateway-wrapper ul li {
    max-width: 90px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white);
    border-radius: 6px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    transition: border-color .2s;
}
.payment-gateway-wrapper ul li:hover { border-color: var(--main-color-one, #1A85ED); }
.payment-gateway-wrapper ul li::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--main-color-one, #1A85ED);
    border-radius: 6px;
    visibility: hidden;
    opacity: 0;
    transition: all .2s;
}
.payment-gateway-wrapper ul li::after {
    position: absolute;
    right: 0;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--main-color-one, #1A85ED);
    content: "\f00c";
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 10px;
    color: #fff;
    line-height: 16px;
    text-align: center;
    border-radius: 0 0 0 4px;
    visibility: hidden;
    opacity: 0;
    transition: all .2s;
}
.payment-gateway-wrapper ul li.selected::before,
.payment-gateway-wrapper ul li.selected::after { visibility: visible; opacity: 1; }

/* ── Payment pages ── */
.mc-pay-section { padding: 80px 0; }
.mc-pay-cancel { text-align: center; max-width: 480px; margin: 0 auto; }
.mc-pay-cancel-icon { font-size: 64px; color: #ef4444; margin-bottom: 16px; }
.mc-pay-cancel-title { font-size: 26px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.mc-pay-cancel-sub { font-size: 16px; color: #555; margin-bottom: 8px; }
.mc-pay-cancel-desc { font-size: 14px; color: #888; margin-bottom: 24px; }
.mc-order-confirm { max-width: 640px; margin: 0 auto; background: #fff; border: 1px solid var(--section-bg-6, #EAF2F8); border-radius: 10px; padding: 32px; }
.mc-confirm-table-wrap { overflow-x: auto; margin: 20px 0; }

/* ── Track Order ── */
.mc-page-section { padding: 80px 0; }
.mc-track-wrap { max-width: 560px; margin: 0 auto; background: #fff; border: 1px solid var(--section-bg-6, #EAF2F8); border-radius: 10px; padding: 40px; }
.mc-track-title { font-size: 22px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; }
.mc-track-desc { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 8px; }
.mc-track-form { margin-top: 8px; }
.mc-track-result { padding: 14px 18px; border-radius: 8px; font-size: 14px; font-weight: 600; margin-top: 16px; }
.mc-track-success { background: #d1fae5; color: #065f46; }
.mc-track-error { background: #fee2e2; color: #991b1b; }

/* ── Empty state ── */
.mc-empty-section { padding: 80px 0; }
.mc-empty-wrap { text-align: center; max-width: 400px; margin: 0 auto; }
.mc-empty-img { max-width: 180px; margin-bottom: 24px; opacity: .7; }
.mc-empty-title { font-size: 20px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }

/* ── Responsive ── */
@media (max-width: 992px) {
    .mc-cart-layout, .mc-checkout-layout { flex-direction: column; }
    .mc-cart-summary, .mc-checkout-summary { width: 100%; position: static; }
    .mc-form-grid { grid-template-columns: 1fr; }
}

/* Mobile cart table → card layout */
@media (max-width: 640px) {
    .mc-cart-table, .mc-cart-table thead, .mc-cart-table tbody,
    .mc-cart-table th, .mc-cart-table td, .mc-cart-table tr { display: block; }
    .mc-cart-table thead { display: none; }
    .mc-cart-table tbody tr { border-bottom: 1px solid #e6eef6; padding: 12px; }
    .mc-cart-table tbody tr:last-child { border-bottom: none; }
    .mc-cart-table tbody tr:hover { background: #f5f9ff; }
    .mc-cart-table td { border: none; padding: 6px 0; text-align: left !important; width: 100% !important; min-width: 0 !important; }
    .mc-cart-table td[data-label]::before { content: attr(data-label); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #7a90a4; display: block; margin-bottom: 4px; }
    .mc-cart-table td:nth-child(1) { order: 0; }
    .mc-cart-name { white-space: normal; max-width: 100%; }
    td.mc-cart-action { text-align: left !important; }
    .mc-cart-action-inner { justify-content: flex-start; }
}

@media (max-width: 576px) {
    .mc-track-wrap, .mc-order-confirm { padding: 24px 16px; }
    .mc-cart-section { padding: 40px 0; }
    .mc-cart-actions { flex-direction: column; }
    .mc-cart-actions .mc-btn { width: 100%; justify-content: center; }
}

/* =============================================================
   ELECTRO THEME — Campaign, Compare, Product Details CSS
   Accent: var(--main-color-one, #1A85ED) | el-* prefix
   ============================================================= */

/* ===== Campaign ===== */
.mc-campaign-hero {
    background: linear-gradient(135deg, var(--section-bg-6, #EAF2F8) 0%, #fff 100%);
    border: 1px solid var(--section-bg-6, #EAF2F8);
    border-radius: 16px;
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.mc-campaign-meta { flex: 1; }
.mc-campaign-title { font-size: clamp(26px, 4vw, 40px); font-weight: 800; color: #1a1a1a; margin: 0 0 10px; }
.mc-campaign-desc { font-size: 15px; color: #666; line-height: 1.7; margin: 0; }
.mc-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.mc-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--main-color-one, #1A85ED);
    color: #fff;
    border-radius: 10px;
    padding: 16px 20px;
    min-width: 70px;
    text-align: center;
}
.mc-countdown-value {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    display: block;
}
.mc-countdown-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 4px;
    opacity: .85;
}
.mc-countdown-sep {
    font-size: 28px;
    font-weight: 700;
    color: var(--main-color-one, #1A85ED);
    line-height: 1;
    padding-bottom: 18px;
}
@media (max-width: 768px) {
    .mc-campaign-hero { flex-direction: column; padding: 28px 20px; }
    .mc-countdown-item { padding: 10px 14px; min-width: 52px; }
    .mc-countdown-value { font-size: 22px; }
}

/* ===== Product Compare ===== */
.mc-compare-wrap { padding: 8px 0 48px; }
.mc-compare-heading { font-size: 24px; font-weight: 700; color: #1a1a1a; margin-bottom: 32px; }
.mc-compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.mc-compare-card {
    background: #fff;
    border: 1px solid var(--section-bg-6, #EAF2F8);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s;
}
.mc-compare-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.09); }
.mc-compare-img-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mc-compare-img-wrap img,
.mc-compare-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.mc-compare-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.mc-compare-name { font-size: 15px; font-weight: 700; color: #1a1a1a; margin: 0; line-height: 1.4; }
.mc-compare-name a { color: inherit; text-decoration: none; }
.mc-compare-name a:hover { color: var(--main-color-one, #1A85ED); }
.mc-compare-price-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.mc-compare-price { font-size: 18px; font-weight: 800; color: var(--main-color-one, #1A85ED); }
.mc-compare-sku { font-size: 12px; color: #888; margin: 0; }
.mc-compare-attrs { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.mc-compare-attrs li { display: flex; gap: 8px; font-size: 13px; border-bottom: 1px dashed var(--section-bg-6, #EAF2F8); padding-bottom: 6px; }
.mc-compare-attrs li:last-child { border-bottom: none; }
.mc-compare-attr-key { font-weight: 700; color: #1a1a1a; flex-shrink: 0; min-width: 80px; }
.mc-compare-attr-val { color: #555; flex: 1; }
.mc-compare-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: #fee2e2;
    color: #991b1b;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    border-top: 1px solid #ffdede;
    width: 100%;
}
.mc-compare-remove:hover { background: #fecaca; }

/* ===== Product Details ===== */
.mc-product-detail-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
    padding: 8px 0 48px;
}
@media (max-width: 991px) {
    .mc-product-detail-wrap { grid-template-columns: 1fr; gap: 28px; }
}

/* Images column */
.mc-pd-images { display: flex; flex-direction: column; gap: 16px; }
.mc-pd-main-img {
    width: 100%;
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mc-pd-main-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.mc-pd-thumb-strip {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.mc-pd-thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    border: 2px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: border-color .2s;
    flex-shrink: 0;
}
.mc-pd-thumb:hover, .mc-pd-thumb.active { border-color: var(--main-color-one, #1A85ED); }

/* Options column */
.mc-pd-options-col { display: flex; flex-direction: column; }
.mc-pd-options { display: flex; flex-direction: column; gap: 16px; }
.mc-pd-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.mc-pd-title { font-size: clamp(20px, 3vw, 28px); font-weight: 800; color: #1a1a1a; margin: 0; line-height: 1.25; flex: 1; }
.mc-pd-actions { display: flex; gap: 8px; flex-shrink: 0; }
.mc-pd-action-btn {
    width: 36px; height: 36px; border-radius: 8px; border: 1.5px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white);
    background: #fff; color: #666; font-size: 16px; display: flex; align-items: center;
    justify-content: center; cursor: pointer; transition: all .2s; text-decoration: none;
}
.mc-pd-action-btn:hover { border-color: var(--main-color-one, #1A85ED); color: var(--main-color-one, #1A85ED); background: var(--section-bg-6, #EAF2F8); }
.mc-pd-summary { font-size: 14px; color: #666; line-height: 1.7; margin: 0; }
.mc-pd-stock-row { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.mc-pd-stock-label { font-weight: 600; color: #555; }
.mc-pd-stock-val { font-weight: 600; }
.mc-pd-price-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.mc-pd-price { font-size: 28px; font-weight: 800; color: var(--main-color-one, #1A85ED); line-height: 1; }
.mc-pd-price-old { font-size: 16px; color: #bbb; text-decoration: line-through; }

/* Variants */
.mc-pd-variants { display: flex; flex-direction: column; gap: 12px; }
.mc-pd-variant-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.mc-pd-variant-label { font-size: 13px; font-weight: 600; color: #1a1a1a; display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Quantity */
.mc-pd-qty-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.mc-pd-qty-label { font-size: 13px; font-weight: 600; color: #1a1a1a; }
/* Override old theme .product-quantity absolute-positioning rules */
.mc-pd-qty-ctrl { display: flex; align-items: center; border: 1.5px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white); border-radius: 8px; overflow: hidden; position: static; }
.mc-pd-qty-ctrl .substract,
.mc-pd-qty-ctrl .plus { position: static; transform: none; left: auto; right: auto; top: auto; }
.mc-pd-qty-btn {
    width: 36px; height: 36px; border: none; background: #f9fafb; color: #555;
    font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.mc-pd-qty-btn:hover { background: var(--main-color-one, #1A85ED); color: #fff; }
.mc-pd-qty-ctrl .quantity-input {
    width: 52px; height: 36px; text-align: center; border: none; border-left: 1.5px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white);
    border-right: 1.5px solid color-mix(in srgb, var(--extra-light-color, #999999) 25%, white); font-size: 14px; font-weight: 600; color: #1a1a1a; outline: none;
}
.mc-pd-stock-count { font-size: 12px; }

/* CTA row */
.mc-pd-cta-row { display: flex; flex-direction: column; gap: 10px; }
.mc-pd-cta-row .mc-btn { justify-content: center; padding: 14px 20px; font-size: 15px; }

/* Specs table */
.mc-pd-specs { margin-top: 4px; }
.mc-pd-specs-title { font-size: 13px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; }

/* Share */
.mc-pd-share { border-top: 1px solid var(--section-bg-6, #EAF2F8); padding-top: 14px; }

/* Meta list */
.mc-pd-meta-list { font-size: 13px; }

/* ===== Product Detail Tabs ===== */
.mc-pd-tabs-section { padding: 48px 0; background: #f9fafb; }
.mc-pd-tabs { background: #fff; border-radius: 12px; border: 1px solid var(--section-bg-6, #EAF2F8); overflow: hidden; }
.mc-pd-tab-bar {
    display: flex;
    border-bottom: 2px solid var(--section-bg-6, #EAF2F8);
    background: #fff;
    overflow-x: auto;
    scrollbar-width: none;
}
.mc-pd-tab-bar::-webkit-scrollbar { display: none; }
.mc-pd-tab-btn {
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
    flex-shrink: 0;
    margin-bottom: -2px;
}
.mc-pd-tab-btn:hover { color: var(--main-color-one, #1A85ED); }
.mc-pd-tab-btn.active { color: var(--main-color-one, #1A85ED); border-bottom-color: var(--main-color-one, #1A85ED); font-weight: 700; }
.mc-pd-tab-content { display: none; }
.mc-pd-tab-content.active { display: block; }
.mc-pd-tab-inner { padding: 28px 32px; }
.mc-pd-ship-return { font-size: 14px; line-height: 1.8; color: #444; }

/* Reviews */
.mc-pd-reviews { display: flex; flex-direction: column; gap: 0; }
.mc-pd-review-form { padding: 24px; background: var(--section-bg-6, #EAF2F8); border-radius: 10px; margin-bottom: 28px; }
.mc-pd-review-form-title { font-size: 18px; font-weight: 700; color: #1a1a1a; margin: 0 0 16px; }
.mc-pd-review-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px dashed var(--section-bg-6, #EAF2F8);
}
.mc-pd-review-item:last-child { border-bottom: none; }
.mc-pd-reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: #f0ebe5; }
.mc-pd-reviewer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.mc-pd-reviewer-content { flex: 1; }
.mc-pd-reviewer-name { font-size: 14px; font-weight: 700; color: #1a1a1a; margin: 0 0 4px; }
.mc-pd-reviewer-name a { color: inherit; text-decoration: none; }
.mc-pd-reviewer-name a:hover { color: var(--main-color-one, #1A85ED); }
.mc-pd-review-text { font-size: 13px; color: #555; line-height: 1.6; margin: 6px 0 4px; }
.mc-pd-review-date { font-size: 11px; color: #aaa; }
.mc-pd-review-login { padding: 24px 0; }

/* ===== Quick View ===== */
.mc-qv-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: flex-start; }
.mc-qv-img-side { position: relative; }
.mc-qv-options-side { overflow-y: auto; max-height: 70vh; }
.mc-qv-sidebar { position: fixed; right: 0; top: 0; width: 680px; height: 100vh; background: #fff; z-index: 9999; overflow-y: auto; box-shadow: -4px 0 24px rgba(0,0,0,.15); transform: translateX(100%); transition: transform .3s; }
.mc-qv-sidebar.open { transform: translateX(0); }
.mc-qv-sidebar-inner { padding: 24px; }
@media (max-width: 768px) {
    .mc-qv-layout { grid-template-columns: 1fr; }
    .mc-qv-sidebar { width: 100%; }
}

/* ===== Digital Product Details ===== */
.mc-digital-pd-wrap {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: flex-start;
    padding: 8px 0 48px;
}
@media (max-width: 991px) {
    .mc-digital-pd-wrap { grid-template-columns: 1fr; }
}
.mc-digital-pd-main { display: flex; gap: 28px; align-items: flex-start; }
.mc-digital-pd-cover { flex-shrink: 0; width: 180px; }
.mc-digital-pd-cover-img { width: 100%; border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,.12); object-fit: contain; }
.mc-digital-pd-content { flex: 1; }
.mc-digital-pd-author { font-size: 14px; color: #888; margin: 4px 0 0; }
.mc-digital-pd-downloads { font-size: 13px; color: #666; margin: 0; }
.mc-digital-pd-meta { margin-top: 16px; }
.mc-digital-pd-meta-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.mc-digital-pd-meta-list li { display: flex; gap: 8px; font-size: 13px; }
.mc-digital-pd-meta-key { font-weight: 700; color: #555; flex-shrink: 0; min-width: 90px; }
.mc-digital-pd-meta-val { color: #333; }
a.mc-digital-pd-meta-val { color: #1A85ED; text-decoration: none; }
a.mc-digital-pd-meta-val:hover { text-decoration: underline; }

/* Digital sidebar */
.mc-digital-pd-sidebar { position: sticky; top: 24px; }
.mc-digital-pd-sidebar-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px dashed var(--section-bg-6, #EAF2F8);
    font-size: 13px;
    gap: 12px;
}
.mc-digital-pd-sidebar-row:last-child { border-bottom: none; }
.mc-digital-pd-sidebar-key { color: #888; font-weight: 600; flex-shrink: 0; }
.mc-digital-pd-sidebar-val { color: #1a1a1a; font-weight: 700; text-align: right; }

/* Digital related products */
.mc-digital-related-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--section-bg-6, #EAF2F8);
    align-items: flex-start;
}
.mc-digital-related-item:last-child { border-bottom: none; }
.mc-digital-related-img-wrap { flex-shrink: 0; width: 64px; height: 80px; border-radius: 6px; overflow: hidden; background: #f5f5f5; }
.mc-digital-related-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mc-digital-related-content { flex: 1; }
.mc-digital-related-name { font-size: 13px; font-weight: 700; color: #1a1a1a; margin: 0 0 2px; }
.mc-digital-related-name a { color: inherit; text-decoration: none; }
.mc-digital-related-name a:hover { color: #1A85ED; }
.mc-digital-related-author { font-size: 11px; color: #888; margin: 0 0 4px; }

@media (max-width: 576px) {
    .mc-digital-pd-main { flex-direction: column; }
    .mc-digital-pd-cover { width: 140px; margin: 0 auto; }
    .mc-campaign-hero { padding: 20px 16px; }
    .mc-pd-tab-inner { padding: 18px 16px; }
}

/* ============================================================
   Navbar
   ============================================================ */
.mc-promo-bar { background: #1A85ED; color: #fff; text-align: center; padding: 8px 16px; font-size: 13px; font-weight: 500; }
.mc-navbar { background: #fff; border-bottom: 1px solid #f0eae6; position: sticky; top: 0; z-index: 1000; }
.mc-navbar-inner { display: flex; align-items: center; gap: 20px; padding: 14px 0; }
.mc-navbar-logo { flex-shrink: 0; }
.mc-logo-link { display: block; }
.mc-logo-img { height: 40px; width: auto; }
.mc-nav-desktop { flex: 1; }
.mc-nav-links { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.mc-nav-links > li { position: relative; }
.mc-nav-links > li > a { display: block; padding: 8px 14px; font-size: 14px; font-weight: 600; color: #2c2c2c; text-decoration: none; border-radius: 6px; transition: color .18s, background .18s; }
.mc-nav-links > li > a:hover, .mc-nav-links > li.active > a { color: #1A85ED; background: #EAF2F8; }
.mc-nav-links li ul { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid #f0eae6; border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,.10); min-width: 200px; padding: 6px 0; z-index: 999; }
.mc-nav-links li:hover > ul { display: block; }
.mc-nav-links li ul li a { display: block; padding: 9px 16px; font-size: 13px; color: #444; text-decoration: none; transition: color .15s, background .15s; }
.mc-nav-links li ul li a:hover { color: #1A85ED; background: #EAF2F8; }
.mc-navbar-right { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.mc-search { display: flex; align-items: center; background: #F4F8FB; border-radius: 8px; padding: 0 10px; gap: 6px; height: 40px; width: 240px; position: relative; }
.mc-search input { border: none; background: transparent; outline: none; font-size: 13px; flex: 1; color: #2c2c2c; }
.mc-search button { background: none; border: none; color: #888; cursor: pointer; font-size: 16px; padding: 0; transition: color .18s; }
.mc-search button:hover { color: #1A85ED; }

/* ── Search dropdown ─────────────────────────────────────────── */
.mc-search-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: #fff;
    border: 1px solid #EAF2F8;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    z-index: 9999;
    list-style: none;
    margin: 0; padding: 6px 0;
    max-height: 380px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #EAF2F8 transparent;
}
.mc-search-dropdown.open { display: block; }
.mc-search-dropdown .product-suggestion-list-item { width: 100% !important; }
.mc-search-dropdown li { border-bottom: none; }
.mc-search-dropdown li .product-suggestion-list-link,
.mc-search-dropdown li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    text-decoration: none;
    color: #1a1a1a !important;
    border-radius: 8px;
    margin: 0 6px;
    transition: background .15s;
}
.mc-search-dropdown li .product-suggestion-list-link:hover,
.mc-search-dropdown li > a:hover { background: rgba(232,96,60,.06); }
.mc-search-dropdown li .product-suggestion-list-link:hover .product-name,
.mc-search-dropdown li .product-suggestion-list-link:hover h6.product-name,
.mc-search-dropdown li > a:hover .product-name,
.mc-search-dropdown li > a:hover h6 { color: #1A85ED !important; }
.mc-search-dropdown li .product-image {
    width: 46px; height: 46px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #EAF2F8;
    background: #F4F8FB;
}
.mc-search-dropdown li .product-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mc-search-dropdown li .product-info { flex: 1; min-width: 0; }
.mc-search-dropdown li .product-info-top { margin: 0 !important; }
.mc-search-dropdown li .product-suggestion-list-link .product-info .product-info-top .product-name,
.mc-search-dropdown li .product-name,
.mc-search-dropdown li h6.product-name {
    display: block !important;
    -webkit-box-orient: horizontal !important;
    -webkit-line-clamp: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    clip: auto !important; clip-path: none !important;
    height: auto !important; min-height: 1em !important; max-height: none !important;
    width: auto !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    line-height: 1.4 !important;
    margin: 0 !important; padding: 0 !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    transition: color .15s !important;
}
.mc-search-dropdown li .product-price { margin: 0 !important; }
.mc-search-dropdown li .price-update-through { display: flex !important; align-items: center; gap: 5px; margin-top: 2px; }
.mc-search-dropdown li .flash-price,
.mc-search-dropdown li .flash-prices { font-size: 12px !important; font-weight: 700; color: #1A85ED !important; }
.mc-search-dropdown li .flash-old-prices { font-size: 11px !important; color: #aaa; text-decoration: line-through; }
.mc-search-footer { border-top: 1px solid #EAF2F8 !important; margin-top: 6px; padding-top: 4px; }
.mc-search-footer a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 14px !important;
    margin: 0 !important;
    border-radius: 0 0 12px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #1A85ED !important;
    text-decoration: none;
    transition: background .15s;
    letter-spacing: .3px;
}
.mc-search-footer a:hover { background: rgba(232,96,60,.07) !important; }
.mc-search-empty {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 14px;
    font-size: 13px;
    color: #888;
    border-bottom: none !important;
}
.mc-search-empty-icon { font-size: 18px; color: #aaa; }
.mc-icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; color: #444; text-decoration: none; font-size: 20px; position: relative; transition: color .18s, background .18s; }
.mc-icon-btn:hover { color: #1A85ED; background: #EAF2F8; }
.mc-badge { position: absolute; top: 4px; right: 4px; background: #1A85ED; color: #fff; font-size: 10px; font-weight: 700; min-width: 16px; height: 16px; border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 0 3px; line-height: 1; }
.mc-hamburger { background: none; border: 1px solid #EAF2F8; border-radius: 6px; width: 40px; height: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; padding: 0; transition: border-color .18s; }
.mc-hamburger span { display: block; width: 20px; height: 2px; background: #444; border-radius: 2px; transition: all .25s; }
.mc-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mc-hamburger.open span:nth-child(2) { opacity: 0; }
.mc-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mc-mobile-nav { display: none; padding: 12px 0 16px; border-top: 1px solid #f0eae6; }
.mc-mobile-nav.open { display: block; }
.mc-mobile-links { list-style: none; margin: 0; padding: 0; }
.mc-mobile-links li a { display: block; padding: 10px 4px; font-size: 14px; font-weight: 600; color: #2c2c2c; text-decoration: none; border-bottom: 1px solid #F4F8FB; }
.mc-mobile-links li a:hover { color: #1A85ED; }
.mc-mobile-links li ul { padding-left: 14px; }
.mc-mobile-links li ul li a { font-weight: 400; font-size: 13px; }
.mc-mobile-search { display: flex; align-items: center; gap: 8px; margin-top: 12px; background: #F4F8FB; border-radius: 8px; padding: 0 10px; height: 40px; }
.mc-mobile-search input { border: none; background: transparent; outline: none; font-size: 13px; flex: 1; color: #2c2c2c; }
.mc-mobile-search button { background: none; border: none; color: #888; cursor: pointer; font-size: 16px; padding: 0; }

/* =====================================================================
   PRODUCT GRID
   ===================================================================== */
.mc-shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 16px; }
@media (max-width: 991px) { .mc-shop-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 575px) { .mc-shop-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* =====================================================================
   BLOG HERO / BREADCRUMB
   ===================================================================== */
.mc-blog-hero { background: linear-gradient(135deg, var(--main-color-one, #1A85ED) 0%, var(--main-color-five, #0D5CA3) 100%); color: #fff; padding: 56px 0 40px; text-align: center; }
.mc-blog-hero h1, .mc-blog-hero h2 { font-family: var(--heading-font, "Rubik", sans-serif); font-size: 32px; font-weight: 700; color: #fff; margin: 0 0 14px; line-height: 1.25; }
@media (max-width: 575px) { .mc-blog-hero h1, .mc-blog-hero h2 { font-size: 22px; } }

.mc-dash-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; flex-wrap: wrap; }
.mc-dash-breadcrumb a { color: rgba(255,255,255,.8); text-decoration: none; transition: color .18s; }
.mc-dash-breadcrumb a:hover { color: #fff; }
.mc-dash-breadcrumb span { color: rgba(255,255,255,.65); }
.mc-dash-breadcrumb i { font-size: 10px; color: rgba(255,255,255,.5); }

/* =====================================================================
   BLOG CARD (listing)
   ===================================================================== */
.mc-blog-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px color-mix(in srgb, var(--main-color-one, #1A85ED) 7%, transparent); transition: box-shadow .2s, transform .2s; height: 100%; display: flex; flex-direction: column; }
.mc-blog-card:hover { box-shadow: 0 6px 24px color-mix(in srgb, var(--main-color-one, #1A85ED) 14%, transparent); transform: translateY(-3px); }

.mc-blog-thumb { position: relative; overflow: hidden; aspect-ratio: 16/10; background: var(--section-bg-6, #EAF2F8); }
.mc-blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; display: block; }
.mc-blog-card:hover .mc-blog-thumb img { transform: scale(1.04); }
.mc-blog-thumb-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; color: var(--main-color-one, #1A85ED); background: var(--section-bg-6, #EAF2F8); }

.mc-blog-cat-badge { position: absolute; top: 12px; left: 12px; background: var(--main-color-one, #1A85ED); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-decoration: none; letter-spacing: .3px; z-index: 1; transition: background .18s; }
.mc-blog-cat-badge:hover { background: var(--main-color-five, #0D5CA3); color: #fff; }

.mc-blog-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }

.mc-blog-meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: 12px; color: #999; margin-bottom: 10px; }
.mc-blog-meta span { display: flex; align-items: center; gap: 4px; }
.mc-blog-meta a { color: #999; text-decoration: none; }
.mc-blog-meta a:hover { color: var(--main-color-one, #1A85ED); }
.mc-blog-meta i { font-size: 13px; color: var(--main-color-one, #1A85ED); }

.mc-blog-title { font-family: var(--heading-font, "Rubik", sans-serif); font-size: 16px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.mc-blog-title a { color: #1B1C25; text-decoration: none; transition: color .18s; }
.mc-blog-title a:hover { color: var(--main-color-one, #1A85ED); }

.mc-blog-excerpt { font-size: 13px; color: #666; line-height: 1.6; margin: 0 0 14px; flex: 1; }

.mc-blog-read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--main-color-one, #1A85ED); text-decoration: none; margin-top: auto; transition: gap .18s, color .18s; }
.mc-blog-read-more:hover { color: var(--main-color-five, #0D5CA3); gap: 10px; }

.mc-blog-empty { text-align: center; padding: 60px 20px; color: #aaa; }
.mc-blog-empty i { font-size: 48px; display: block; margin-bottom: 12px; }
.mc-blog-empty p { font-size: 15px; }

/* =====================================================================
   BLOG SIDEBAR
   ===================================================================== */
.mc-blog-sidebar-card { background: #fff; border-radius: 12px; padding: 22px 20px; margin-bottom: 24px; box-shadow: 0 2px 10px color-mix(in srgb, var(--main-color-one, #1A85ED) 7%, transparent); }

.mc-blog-sidebar-title { font-family: var(--heading-font, "Rubik", sans-serif); font-size: 15px; font-weight: 700; color: #1B1C25; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--section-bg-6, #EAF2F8); display: block; }

.mc-blog-search-row { display: flex; align-items: center; background: #f5f8fc; border: 1px solid #e4edf6; border-radius: 8px; overflow: hidden; }
.mc-blog-search-row input { flex: 1; border: none; background: transparent; outline: none; padding: 10px 12px; font-size: 13px; color: #333; }
.mc-blog-search-btn { border: none; background: var(--main-color-one, #1A85ED); color: #fff; padding: 0 14px; height: 40px; cursor: pointer; font-size: 16px; transition: background .18s; flex-shrink: 0; }
.mc-blog-search-btn:hover { background: var(--main-color-five, #0D5CA3); }

.mc-blog-cat-list { list-style: none; margin: 0; padding: 0; }
.mc-blog-cat-item { border-bottom: 1px solid #f0eaf6; }
.mc-blog-cat-item:last-child { border-bottom: none; }
.mc-blog-cat-link { display: flex; justify-content: space-between; align-items: center; padding: 9px 4px; font-size: 13px; color: #555; text-decoration: none; transition: color .18s, padding-left .18s; }
.mc-blog-cat-link:hover, .mc-blog-cat-link.active { color: var(--main-color-one, #1A85ED); padding-left: 6px; }
.mc-blog-cat-count { background: var(--section-bg-6, #EAF2F8); color: var(--main-color-one, #1A85ED); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 12px; flex-shrink: 0; }

.mc-blog-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.mc-blog-tag { display: inline-block; padding: 5px 12px; background: #f0f4f8; color: #555; font-size: 12px; border-radius: 20px; text-decoration: none; border: 1px solid #e4edf6; transition: background .18s, color .18s, border-color .18s; }
.mc-blog-tag:hover { background: var(--main-color-one, #1A85ED); color: #fff; border-color: var(--main-color-one, #1A85ED); }

/* Recent posts sidebar */
.mc-blog-recent-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid #f0f4f8; }
.mc-blog-recent-item:last-child { border-bottom: none; padding-bottom: 0; }
.mc-blog-recent-thumb { width: 64px; height: 54px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: var(--section-bg-6, #EAF2F8); }
.mc-blog-recent-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mc-blog-recent-title { font-size: 13px; font-weight: 600; color: #1B1C25; text-decoration: none; line-height: 1.4; display: block; margin-bottom: 4px; transition: color .18s; }
.mc-blog-recent-title:hover { color: var(--main-color-one, #1A85ED); }
.mc-blog-recent-date { font-size: 11px; color: #aaa; display: flex; align-items: center; gap: 4px; }

/* =====================================================================
   BLOG SINGLE — ARTICLE
   ===================================================================== */
.mc-blog-article { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 14px color-mix(in srgb, var(--main-color-one, #1A85ED) 8%, transparent); margin-bottom: 28px; }

.mc-blog-article-img { width: 100%; max-height: 420px; overflow: hidden; }
.mc-blog-article-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.mc-blog-article-body { padding: 28px 28px 24px; }
@media (max-width: 575px) { .mc-blog-article-body { padding: 18px 16px; } }

.mc-blog-article-divider { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; font-size: 13px; color: #999; padding: 12px 0 18px; border-top: 1px solid #f0f4f8; border-bottom: 1px solid #f0f4f8; margin: 14px 0 20px; }
.mc-blog-article-divider i { color: var(--main-color-one, #1A85ED); }
.mc-blog-article-divider span { display: flex; align-items: center; gap: 5px; }

.mc-blog-article-content { font-size: 15px; color: #555; line-height: 1.85; }
.mc-blog-article-content h1, .mc-blog-article-content h2, .mc-blog-article-content h3,
.mc-blog-article-content h4, .mc-blog-article-content h5, .mc-blog-article-content h6 { font-family: var(--heading-font, "Rubik", sans-serif); color: #1B1C25; margin: 24px 0 12px; }
.mc-blog-article-content p { margin: 0 0 16px; }
.mc-blog-article-content ul, .mc-blog-article-content ol { padding-left: 22px; margin-bottom: 16px; }
.mc-blog-article-content li { margin-bottom: 6px; }
.mc-blog-article-content img { max-width: 100%; border-radius: 8px; margin: 10px 0; }
.mc-blog-article-content blockquote { border-left: 4px solid var(--main-color-one, #1A85ED); padding: 12px 18px; margin: 20px 0; background: #f0f7ff; color: #555; border-radius: 0 8px 8px 0; font-style: italic; }
.mc-blog-article-content a { color: var(--main-color-one, #1A85ED); text-decoration: underline; }

.mc-blog-article-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 20px; margin-top: 24px; border-top: 1px solid #f0f4f8; }
.mc-blog-article-tag { display: inline-flex; align-items: center; gap: 5px; padding: 5px 12px; background: var(--section-bg-6, #EAF2F8); color: var(--main-color-one, #1A85ED); font-size: 12px; border-radius: 20px; text-decoration: none; border: 1px solid #d0e7f8; transition: background .18s, color .18s; }
.mc-blog-article-tag:hover { background: var(--main-color-one, #1A85ED); color: #fff; border-color: var(--main-color-one, #1A85ED); }

/* =====================================================================
   BLOG COMMENTS
   ===================================================================== */
.mc-blog-comments-card { background: #fff; border-radius: 14px; padding: 28px; box-shadow: 0 2px 12px color-mix(in srgb, var(--main-color-one, #1A85ED) 7%, transparent); margin-bottom: 24px; }
@media (max-width: 575px) { .mc-blog-comments-card { padding: 18px 16px; } }

.mc-blog-comments-title { font-family: var(--heading-font, "Rubik", sans-serif); font-size: 18px; font-weight: 700; color: #1B1C25; margin: 0 0 20px; padding-bottom: 14px; border-bottom: 2px solid var(--section-bg-6, #EAF2F8); }

.mc-comment-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid #f5f8fc; }
.mc-comment-item:last-child { border-bottom: none; }

.mc-comment-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--main-color-one, #1A85ED), var(--main-color-five, #0D5CA3)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 17px; flex-shrink: 0; overflow: hidden; }
.mc-comment-avatar img { width: 100%; height: 100%; object-fit: cover; }

.mc-comment-name { font-weight: 700; font-size: 14px; color: #1B1C25; margin-bottom: 2px; }
.mc-comment-date { font-size: 12px; color: #aaa; margin-bottom: 6px; }
.mc-comment-body { font-size: 14px; color: #555; line-height: 1.6; margin: 0 0 8px; }

.mc-comment-reply-btn { background: none; border: 1px solid #e4edf6; border-radius: 6px; color: var(--main-color-one, #1A85ED); font-size: 12px; font-weight: 600; padding: 4px 12px; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; transition: background .18s, color .18s; }
.mc-comment-reply-btn:hover { background: var(--main-color-one, #1A85ED); color: #fff; border-color: var(--main-color-one, #1A85ED); }

.mc-comment-replies { margin-top: 12px; padding-left: 14px; border-left: 2px solid var(--section-bg-6, #EAF2F8); }

/* =====================================================================
   COMMENT FORM
   ===================================================================== */
.mc-comment-form { background: #fff; border-radius: 14px; padding: 28px; box-shadow: 0 2px 12px color-mix(in srgb, var(--main-color-one, #1A85ED) 7%, transparent); margin-bottom: 24px; }
@media (max-width: 575px) { .mc-comment-form { padding: 18px 16px; } }

.mc-comment-form-title { font-family: var(--heading-font, "Rubik", sans-serif); font-size: 18px; font-weight: 700; color: #1B1C25; margin: 0 0 20px; padding-bottom: 14px; border-bottom: 2px solid var(--section-bg-6, #EAF2F8); }

.mc-form-label { display: block; font-size: 13px; font-weight: 600; color: #444; margin-bottom: 6px; }
.mc-form-required { color: #e53e3e; margin-left: 2px; }
.mc-form-input { width: 100%; border: 1px solid #e4edf6; border-radius: 8px; padding: 10px 14px; font-size: 14px; color: #333; background: #fff; outline: none; transition: border-color .18s, box-shadow .18s; font-family: var(--body-font, "Roboto", sans-serif); }
.mc-form-input:focus { border-color: var(--main-color-one, #1A85ED); box-shadow: 0 0 0 3px color-mix(in srgb, var(--main-color-one, #1A85ED) 12%, transparent); }
.mc-form-textarea { resize: vertical; min-height: 110px; }

/* =====================================================================
   BUTTONS (mc-btn)
   ===================================================================== */
.mc-btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 11px 26px; border-radius: 8px; font-family: var(--heading-font, "Rubik", sans-serif); font-size: 14px; font-weight: 700; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: background .2s, color .2s, border-color .2s, box-shadow .2s; line-height: 1; }
.mc-btn-primary { background: var(--main-color-one, #1A85ED); color: #fff; border-color: var(--main-color-one, #1A85ED); }
.mc-btn-primary:hover { background: var(--main-color-five, #0D5CA3); border-color: var(--main-color-five, #0D5CA3); color: #fff; }
.mc-btn-outline { background: transparent; color: var(--main-color-one, #1A85ED); border-color: var(--main-color-one, #1A85ED); }
.mc-btn-outline:hover { background: var(--main-color-one, #1A85ED); color: #fff; }

/* ── Compare Page Table ── */
.mc-compare-section { padding: 48px 0 72px; }
.mc-compare-table-wrap { border: 1.5px solid #dce8f5; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 16px color-mix(in srgb, var(--main-color-one, #1A85ED) 8%, transparent); margin-bottom: 32px; }
.mc-compare-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.mc-compare-head-label { width: 160px; background: var(--main-color-one, #1A85ED); padding: 16px; }
.mc-compare-head-cell { padding: 20px 16px; text-align: center; background: #fff; border-left: 1px solid #dce8f5; }
.mc-compare-product-card { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.mc-compare-img-link { display: block; }
.mc-compare-product-img { width: 90px; height: 90px; object-fit: contain; border-radius: 8px; }
.mc-compare-img-placeholder { width: 90px; height: 90px; background: #EAF4FE; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--main-color-one, #1A85ED); }
.mc-compare-product-name { font-size: 13px; font-weight: 600; color: #1a1a1a; text-align: center; line-height: 1.4; }
.mc-compare-product-name a { color: inherit; text-decoration: none; }
.mc-compare-product-name a:hover { color: var(--main-color-one, #1A85ED); }
.mc-compare-remove { display: inline-flex; align-items: center; gap: 5px; padding: 5px 12px; border: 1.5px solid var(--main-color-one, #1A85ED); color: var(--main-color-one, #1A85ED); background: transparent; border-radius: 20px; font-size: 11px; font-weight: 600; cursor: pointer; transition: all .18s; font-family: inherit; }
.mc-compare-remove:hover { background: var(--main-color-one, #1A85ED); color: #fff; }
.mc-compare-label { padding: 14px 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #fff; background: var(--main-color-one, #1A85ED); white-space: nowrap; }
.mc-compare-label i { margin-right: 6px; }
.mc-compare-cell { padding: 14px 20px; text-align: center; border-left: 1px solid #dce8f5; background: #fff; vertical-align: middle; }
.mc-compare-row-alt .mc-compare-cell { background: #f4f9ff; }
.mc-compare-row-alt .mc-compare-head-cell { background: #f4f9ff; }
.mc-compare-price-wrap { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.mc-compare-price { font-size: 17px; font-weight: 800; color: var(--main-color-one, #1A85ED); }
.mc-compare-old-price { font-size: 12px; color: #aaa; text-decoration: line-through; }
.mc-compare-discount-badge { display: inline-block; background: color-mix(in srgb, var(--main-color-one, #1A85ED) 10%, transparent); color: var(--main-color-one, #1A85ED); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 20px; }
.mc-compare-muted { color: #777; font-size: 13px; }
.mc-compare-in-stock { color: #2E7D32; font-size: 13px; font-weight: 600; }
.mc-compare-out-stock { color: #D32F2F; font-size: 13px; font-weight: 600; }
.mc-compare-cat-link { color: var(--main-color-one, #1A85ED); text-decoration: none; font-size: 13px; }
.mc-compare-cat-link:hover { text-decoration: underline; }
.mc-compare-atc-btn { width: 100%; justify-content: center; }
.mc-compare-footer { margin-top: 8px; }
.mc-compare-empty { text-align: center; padding: 72px 0; }
.mc-compare-empty-icon { width: 100px; height: 100px; border-radius: 50%; background: color-mix(in srgb, var(--main-color-one, #1A85ED) 8%, transparent); border: 2px solid color-mix(in srgb, var(--main-color-one, #1A85ED) 20%, transparent); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 48px; color: var(--main-color-one, #1A85ED); }
.mc-compare-empty h2 { font-size: 22px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; }
.mc-compare-empty p { font-size: 14px; color: #888; margin-bottom: 24px; }

/* Hide star-rating plugin tooltip in review form */
[data-star-rating] .gl-star-rating--stars[aria-label]:after,
[data-star-rating] .gl-star-rating--stars[aria-label]:before { display: none !important; }
