/*-----------------------------------------------------------------------------------

-----------------------------------------------------------------------------------

/************ TABLE OF CONTENTS ***************

	-----------------
    01. THEME CSS
	-----------------
		1.1 Animation
		1.2 Common

	-----------------
    02. COMPONENTS css
	-----------------
		2.1 Nice Select
		2.2 Tab

	-----------------
    03. HEADER CSS
	-----------------
		3.1 Header Css Start

    ---------------------------------
	04. MENU CSS
	---------------------------------
		4.1 Mean Menu css
		4.2 Menu css

	---------------------------------
	05. BLOG CSS
	---------------------------------
		5.1 Postbox css
		5.2 Sidebar css
		5.2 Pagination css
		5.3 Comment css

	---------------------------------
	06 ELEMENETS css
	---------------------------------
		6.1 Buttons
		6.2 Section Title
		6.3 Main SLider
		6.4 Banner
		6.5 Feature
		6.6 Price
		6.7 Offer
		6.8 Best Details
		6.9 Seller
		6.10 Brand
		6.11 Categroy
		6.12 Testimonial
		6.13 Newsleter
		6.14 FAQ
		6.16 404
		6.17 About
		6.18 Counter
		6.19 Coosse
		6.20 Landing Page

	---------------------------------
	07. ECOMMERCE CSS
	---------------------------------
		7.1 Product css
		7.2 Product Details css
		7.3 Shop css
		7.4 Cart css

	---------------------------------
	08. FOOTER CSS
	---------------------------------
		8.1 Footer Style 1

**********************************************/
:root {
  --swiftcart-font: "Public Sans", sans-serif;
  --swiftcart-heading-font: "Inter", sans-serif;
  --swiftcart-special-font: "Public Sans", sans-serif;
  --swiftcart-letter-space: 0.1em;
  --swiftcart-letter-space-xl: 0.2em;
  --swiftcart-border-radius: 5px;
  --swiftcart-box-shadow: 0px 0px 150px 0px rgba(78, 67, 250, 0.06);
  --swiftcart-body: #F8F8F8;
  --swiftcart-base: #0c217b;
  --swiftcart-base-rgb: 18, 127, 255;
  --swiftcart-secondary: #EB001B;
  --swiftcart-secondary-rgb: 235, 0, 27;
  --swiftcart-text: #757575;
  --swiftcart-text-rgb: 117, 117, 117;
  --swiftcart-text-gray: #89868d;
  --swiftcart-text-gray-rgb: 137, 134, 141;
  --swiftcart-gray: #F3F3F4;
  --swiftcart-gray-rgb: 243, 243, 244;
  --swiftcart-gray-2: #E8E8E8;
  --swiftcart-gray-2-rgb: 232, 232, 232;
  --swiftcart-white: #fff;
  --swiftcart-white-rgb: 255, 255, 255;
  --swiftcart-black: #1C1C1C;
  --swiftcart-black-2: #191C1F;
  --swiftcart-black-rgb: 28, 28, 28;
  --swiftcart-black-2-rgb: 25, 28, 31;
  --swiftcart-border-color: #DEE2E7;
  --swiftcart-border-color-rgb: 222, 226, 231;


  --bg-1: #050914;
  --bg-2: #0A1230;
  --bg-3: #060A1C;
  --ink: #F4F6FF;
  --ink-dim: #8A93B8;
  --line: rgba(255, 255, 255, 0.16);
}

/*--------------------------------------------------------------
01. THEME CSS
--------------------------------------------------------------*/
/*----------------------------------------
1.1 Animation
----------------------------------------*/
@keyframes xcfadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.xcfadeUp {
  -webkit-animation-name: xcfadeUp;
  animation-name: xcfadeUp;
}

@-webkit-keyframes xcfadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes xcfadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.xcfadeLeft {
  -webkit-animation-name: xcfadeLeft;
  animation-name: xcfadeLeft;
}

@-webkit-keyframes xcfadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes xcfadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.xcfadeRight {
  -webkit-animation-name: xcfadeRight;
  animation-name: xcfadeRight;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes xcfadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes xcfadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.xcfadeIn {
  -webkit-animation-name: xcfadeIn;
}

@keyframes moveLight {
  0% {
    background: linear-gradient(0deg, var(--swiftcart-secondary) 45.13%, rgba(45, 255, 168, 0) 99.92%, rgba(0, 82, 202, 0) 100%);
    opacity: 0.2;
  }

  50% {
    background: linear-gradient(360deg, var(--swiftcart-secondary) 45.13%, rgba(45, 255, 168, 0) 99.92%, rgba(0, 82, 202, 0) 100%);
    opacity: 0.4;
  }

  100% {
    background: linear-gradient(0deg, var(--swiftcart-secondary) 45.13%, rgba(45, 255, 168, 0) 99.92%, rgba(0, 82, 202, 0) 100%);
    opacity: 0.2;
  }
}

@keyframes xcswing {
  0% {
    transform: rotate(6deg);
  }

  100% {
    transform: rotate(-6deg);
  }
}

@keyframes xcRound {
  0% {
    transform: rotate(0);
  }

  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0);
  }
}

@-webkit-keyframes translateor1 {
  0% {
    transform: translateY(20px);
  }

  50% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(20px);
  }
}

@keyframes translateor1 {
  0% {
    transform: translateY(20px);
  }

  50% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(20px);
  }
}

@-webkit-keyframes translateor2 {
  0% {
    transform: translateX(20px);
  }

  50% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(20px);
  }
}

@keyframes translateor2 {
  0% {
    transform: translateX(20px);
  }

  50% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(20px);
  }
}

@-webkit-keyframes titleFill {
  0% {
    width: 0;
  }

  80% {
    width: 100%;
  }

  100% {
    width: 100%;
  }
}

@keyframes titleFill {
  0% {
    width: 0;
  }

  80% {
    width: 100%;
  }

  100% {
    width: 100%;
  }
}

@keyframes icon-bounce {

  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  60% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@keyframes borderShape {
  0% {
    border-radius: 48% 52% 54% 46%/30% 32% 68% 70%;
  }

  33% {
    border-radius: 32% 68% 23% 77%/58% 29% 71% 42%;
  }

  70% {
    border-radius: 39% 61% 33% 67%/69% 51% 49% 31%;
  }

  100% {
    border-radius: 48% 52% 54% 46%/30% 32% 68% 70%;
  }
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 4rem rgba(0, 0, 0, 0);
  }
}

@keyframes scaleUpDown {
  from {
    transform: scale(1.2);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes xcleftToRight {
  0% {
    left: 0;
  }

  50% {
    left: 100%;
    transform: translateX(-100%);
  }
}

@keyframes xcRightToLeft {
  0% {
    left: 0;
  }

  50% {
    left: 100%;
    transform: translateX(-100%);
  }
}

@keyframes xcXoomIn {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

/* 04. ========= btn-arrow-animation ========== */
@keyframes xcArrowAnimation {
  49% {
    transform: translateX(30%);
  }

  50% {
    opacity: 0;
    transform: translateX(-30%);
  }

  51% {
    opacity: 1;
  }
}

/*----------------------------------------
1.2 Common
----------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*---------------------------------
	typography css start 
---------------------------------*/
body {
  font-family: var(--swiftcart-font);
  font-size: 16px;
  font-weight: normal;
  color: var(--swiftcart-text);
  line-height: 29px;
  scroll-snap-type: proximity;
  background-color: var(--swiftcart-body);
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--swiftcart-heading-font);
  color: var(--swiftcart-black);
  margin-top: 0px;
  font-weight: 700;
  line-height: 1.2;
  -webkit-transition: color 0.3s 0s ease-out;
  -moz-transition: color 0.3s 0s ease-out;
  -ms-transition: color 0.3s 0s ease-out;
  -o-transition: color 0.3s 0s ease-out;
  transition: color 0.3s 0s ease-out;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

p {
  font-family: var(--swiftcart-font);
  font-weight: 400;
  color: var(--swiftcart-text);
  margin-bottom: 15px;
}

a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
  transition: 0.3s;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

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

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

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

em {
  font-style: normal;
}

hr {
  margin: 0;
}

.ul-0 {
  padding: 0;
  margin: 0;
}

.pl-0 {
  padding-left: 0;
}

.w-img img {
  width: 100%;
}

.fix {
  overflow: hidden;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea {
  outline: none;
  background-color: #EFF0F2;
  height: 45px;
  width: 100%;
  line-height: 60px;
  font-size: 15px;
  border: 2px solid #EFF0F2;
  color: var(--swiftcart-black);
  padding-left: 15px;
  padding-right: 15px;
}

[dir=rtl] input[type=text],
[dir=rtl] input[type=email],
[dir=rtl] input[type=tel],
[dir=rtl] input[type=number],
[dir=rtl] input[type=password],
[dir=rtl] input[type=url],
[dir=rtl] textarea {
  text-align: right;
}

input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #84848B;
}

input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=url]::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #84848B;
}

input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=url]:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 4-18 */
  color: #84848B;
}

input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* IE 10+  Edge*/
  color: #84848B;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=url]::placeholder,
textarea::placeholder {
  /* MODERN BROWSER */
  color: #84848B;
}

textarea {
  line-height: 1.8;
  padding-top: 20px;
  padding-bottom: 20px;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--swiftcart-black);
  color: var(--swiftcart-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--swiftcart-black);
  color: var(--swiftcart-white);
  text-shadow: none;
}

::selection {
  background: var(--swiftcart-black);
  color: var(--swiftcart-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--swiftcart-black);
  font-size: var(--xc-fz-body);
  opacity: 1;
}

*::placeholder {
  color: var(--swiftcart-black);
  font-size: var(--xc-fz-body);
  opacity: 1;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

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

.demo {
  -webkit-transition: color 0.3s 0s linear;
  -moz-transition: color 0.3s 0s linear;
  -ms-transition: color 0.3s 0s linear;
  -o-transition: color 0.3s 0s linear;
  transition: color 0.3s 0s linear;
  -webkit-transition: color 0.3s linear, transform 0.2s ease;
  -moz-transition: color 0.3s linear, transform 0.2s ease;
  -ms-transition: color 0.3s linear, transform 0.2s ease;
  -o-transition: color 0.3s linear, transform 0.2s ease;
  transition: color 0.3s linear, transform 0.2s ease;
}

[dir=rtl] .demo {
  margin-left: 0;
  margin-right: 15px;
}

div.demo img {
  margin-left: 10px;
}

[xc-theme=xc-theme-dark] .demo {
  color: yellow;
}

/*----------------------------------------
    Body Overlay 
-----------------------------------------*/
.body-overlay {
  background-color: var(--swiftcart-black);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.body-overlay:hover {
  cursor: pointer;
}

.body-overlay.opened {
  opacity: 0.5;
  visibility: visible;
}

/* dropcap */
.xc-dropcap::first-letter {
  font-size: 50px;
  font-weight: 700;
  float: left;
  text-align: center;
  color: var(--swiftcart-black);
  background-color: var(--swiftcart-white);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  margin-right: 5px;
  line-height: inherit;
}

.class {
  stroke-dasharray: 189px, 191px;
  stroke-dashoffset: 0px;
}

.xc-preloader {
  position: fixed;
  background-color: var(--swiftcart-white);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 40px;
}

.xc-preloader__image {
  border-radius: 50%;
  padding: 20px;
  position: relative;
  display: inline-block;
}

.xc-preloader__image::before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  border-top: 5px solid var(--swiftcart-base);
  border-radius: 50%;
  animation: circle 3s linear infinite;
}

@keyframes circle {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.xc-enable-dark {
  display: none;
}

.xc-dark-swich i {
  width: 46px;
  height: 46px;
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  transition: 0.3s;
}

.xc-dark-swich i.sun {
  display: none;
}

.xc-dark-mode .xc-dark-swich i {
  width: 46px;
  height: 46px;
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
}

.xc-dark-mode .xc-dark-swich i.sun {
  display: inline-block;
}

.xc-dark-mode .xc-dark-swich i.moon {
  display: none;
}

.swiftcart-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.swiftcart-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
}

.swiftcart-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  background-color: var(--swiftcart-gray, #ecf2fc);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--swiftcart-text, #636363);
  border-radius: 50%;
  font-size: 14px;
  color: var(--swiftcart-text, #636363);
  transition: all 500ms ease;
}

.swiftcart-owl__carousel--basic-nav.owl-carousel .owl-nav button span:hover {
  background-color: var(--swiftcart-black, #051d1f);
  color: var(--swiftcart-white, #fff);
}

.swiftcart-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
  display: none;
}

.swiftcart-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.swiftcart-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 5px;
  display: block;
  border-radius: 30px;
  background-color: var(--swiftcart-base);
  margin: 0;
  transition: all 300ms ease;
}

.swiftcart-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

.swiftcart-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover,
.swiftcart-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--swiftcart-base, #3d72fc);
  width: 20px;
}

.swiftcart-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled {
  display: none;
}

.swiftcart-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled+.owl-dots {
  margin-top: 50px;
}

.xc-body-overlay {
  z-index: 91;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
  visibility: hidden;
  cursor: crosshair;
}

.scoroll-locked {
  overflow: hidden;
}

.xc-body-overlay.active {
  opacity: 1;
  visibility: visible;
}

.gutter-y-20 {
  row-gap: 20px;
}

.gutter-y-30 {
  row-gap: 30px;
}

.gutter-y-40 {
  row-gap: 40px;
}

.gutter-y-50 {
  row-gap: 50px;
}

.gutter-y-60 {
  row-gap: 60px;
}

.gutter-x-80 {
  --bs-gutter-x: 80px;
}

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

.black-bg-2 {
  background:
    linear-gradient(rgba(1, 20, 55, 0.938),
      rgba(1, 20, 55, 0.918)),
    url("../images/img-1.jpeg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



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

.grey-bg {
  background-color: var(--swiftcart-gray);
}

.grey-bg-2 {
  background-color: var(--swiftcart-gray-2);
}

.splitting .char {
  transition: transform 0.3s cubic-bezier(0.3, 0, 0.3, 1), opacity 0.3s linear;
  transition-delay: calc(20ms * var(--char-index));
}

.splitting[data-scroll=out] .char {
  opacity: 0.1;
  transform: translateY(0.25em);
}

br {
  display: none;
}

@media (min-width: 992px) {
  br {
    display: block;
  }
}

/*--------------------------------------------------------------
# 02. COMPONENTS css
--------------------------------------------------------------*/
/*----------------------------------------
2.1 Nice Select
----------------------------------------*/
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: normal;
  height: 38px;
  line-height: 38px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}

.nice-select:hover {
  border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #999;
}

.nice-select::after {
  position: absolute;
  content: "\f107";
  top: 50%;
  right: 10px;
  color: #8B96A5;
  font-family: "Font Awesome 6 free";
  font-weight: 700;
  pointer-events: none;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  margin-top: 0;
  transform-origin: center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.nice-select.open::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.nice-select.disabled::after {
  border-color: #cccccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small::after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nice-select .option.selected {
  font-weight: bold;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

/*----------------------------------------
2.2 Tab
----------------------------------------*/
.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}

/*--------------------------------------------------------------
# 03. HEADER CSS
--------------------------------------------------------------*/
/*----------------------------------------
3.1 Header Css Start
----------------------------------------*/
/*--------------------------------------------------------------
# Header Css Start
------------------- -------------------------------------------*/
.xc-header-sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.09);
  z-index: 91;
}

.xc-header-sticky.xc-transparent-header {
  background-color: var(--swiftcart-white);
  top: 0;
  padding: 10px;
}

.xc-sticky-header {
  position: relative;
  z-index: 999;
  transition: 0.3s;
}

.xc-sticky-header.xc-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--swiftcart-white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
}

.xc-transparent-header {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
}

.xc-transparent-header .xc-headero-one__call {
  color: var(--swiftcart-white);
}

.xc-transparent-header .xc-headero-one__call i {
  color: var(--swiftcart-secondary);
}

.xc-transparent-header .xc-headero-one__call:hover {
  color: var(--swiftcart-secondary);
}

.xc-transparent-header .xc-search-btn {
  background-color: rgba(var(--swiftcart-secondary-rgb), 0.1);
  color: var(--swiftcart-secondary);
}

.xc-transparent-header .xc-search-btn:hover {
  background-color: rgba(var(--swiftcart-secondary-rgb), 0.11);
}

.xc-header-one {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fff;
}

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

.xc-header-one__search form {
  width: 100%;
  display: flex;
  border-radius: 6px;
  border: 1px solid #e9e9e9;
  padding: 2px 3px;
  font-family: var(--swiftcart-heading-font);
}

.xc-header-one__search input {
  height: 40px;
  flex-shrink: 0;
  font-size: 15px;
  padding: 10px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  border: 0;
}

@media (min-width: 992px) {
  .xc-header-one__search input {
    min-width: 600px;

  }
}

@media (min-width: 1400px) {
  .xc-header-one__search input {
    min-width: 621px;
  }
}

.xc-header-one__search input:focus {
  outline: none;
}

.xc-header-one__search button {
  background: linear-gradient(90deg, #0d2282 0%, #b5072a 100%);
  display: inline-block;
  flex-shrink: 0;
  padding: 10px 23px;
  height: 40px;
  line-height: 1;
  font-size: 15px;
  border-radius: 6px;
  color: var(--swiftcart-white);
}

.xc-header-one__search select,
.xc-header-one__search .nice-select {
  font-size: 15px;
  color: var(--swiftcart-black);
  border-radius: 0;
  height: 40px;
  line-height: 40px;
  min-width: 145px;
  border: 0;
  font-family: var(--swiftcart-heading-font);
  border-left: 1px solid #e9e9e9;
}

.xc-header-one__right {
  display: flex;
  align-items: center;
  gap: 45px;
}

.xc-header-one__btns {
  display: flex;
  gap: 23px;
}

.xc-header-one__btn {
  display: inline-block;
  font-size: 12px;
  font-family: var(--swiftcart-heading-font);
  color: var(--swiftcart-black-2);
  font-weight: 500;
  position: relative;
}

.xc-header-one__btn:hover {
  color: var(--swiftcart-base);
}

.xc-header-one__btn .wishlist_count,
.xc-header-one__btn .cart_count {
  position: absolute;
  top: -8px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 8px;
  background: #ff2d55;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  /* border: 2px solid #fff; */
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
  z-index: 2;
}

.xc-header-one__btn i {
  display: block;
  text-align: center;
  font-size: 18px;
  line-height: 1;
}

.xc-header-one__bottom {
  border-bottom: 1px solid var(--swiftcart-border-color);
  background-color: var(--swiftcart-white);
}

/* .xc-header-one__bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
} */

.xc-header-one__bottom-left {
  display: flex;
  align-items: center;
}

.xc-header-one__bottom-right {
  display: flex;
  gap: 5px;
}

.xc-header-one__cat {
  font-size: 15px;
  font-weight: 500;
  color: var(--swiftcart-white);
  font-family: var(--swiftcart-heading-font);
  position: relative;
  padding: 8px 20px;
  max-width: 220px;
  margin-right: 20px;
  border-radius: 4px;
  width: 100%;
  background-color: #0c217b;
}

.xc-header-one__cat:hover .xc-header-one__cat-list {
  top: 100%;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.xc-header-one__cat i {
  font-size: 18px;
  position: relative;
  top: 3px;
  margin-right: 9px;
}

.xc-header-one__cat-list {
  width: 250px;
  z-index: 4;
  padding: 20px 0;
  display: inline-block;
  margin: 0;
  position: absolute;
  top: 120%;
  left: 0;
  width: 250px;
  background: var(--swiftcart-white);
  z-index: 99;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0px 4px 60px rgba(69, 105, 231, 0.15);
  border-radius: 0px 0px 5px 5px;
  border: 0px solid transparent;
  border-top-width: 0px;
  border-top-style: solid;
  border-top-color: transparent;
  transition: 0.4s;
  border-top: 2px solid var(--swiftcart-base);
  pointer-events: none;
  text-align: left;
}

.xc-header-one__cat-list ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 0;
}

.xc-header-one__cat-list ul li {
  display: block;
  width: 100%;
  margin: 0;
  transition: 0.3s;
}

.xc-header-one__cat-list ul li a {
  padding: 10px 30px;
  font-size: 14px;
  position: relative;
  z-index: 1;
  color: var(--swiftcart-black);
  width: 100%;
  transition: 0.3s;
  display: inline-block;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--swiftcart-heading-font);
}

.xc-header-one__cat-list ul li a:hover {
  color: var(--swiftcart-base);
}

.xc-header-one__lang .nice-select,
.xc-header-one__currency .nice-select {
  border: 0;
  height: 52px;
  line-height: 52px;
  font-weight: 500;
  color: var(--swiftcart-black);
  font-family: var(--swiftcart-heading-font);
}

.xc-header-two {
  padding: 20px 0;
}

.xc-header-two__top {
  background-color: #0965D0;
  padding: 9px 0px;
}

.xc-header-two__top-wrapper {
  align-items: center;
}

.xc-header-two__top-left p {
  margin-bottom: 0;
  color: var(--swiftcart-white);
}

.xc-header-two__top-right {
  display: flex;
}

.xc-header-two__top .nice-select::after {
  color: var(--swiftcart-white);
}

.xc-header-two__currency-select,
.xc-header-two__lang-select {
  background-color: transparent;
  border: transparent;
}

.xc-header-two__currency-select .current,
.xc-header-two__lang-select .current {
  color: var(--swiftcart-white);
}

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

.xc-header-two__search form {
  width: 100%;
  display: flex;
  border-radius: 6px;
  background-color: var(--swiftcart-base);
  padding: 2px 3px;
  font-family: var(--swiftcart-heading-font);
  position: relative;
}

.xc-header-two__search input {
  height: 48px;
  flex-shrink: 0;
  padding-left: 30px;
  padding-right: 60px;
  border: 0;
  border-radius: 2px;
}

@media (min-width: 992px) {
  .xc-header-two__search input {
    min-width: 400px;
  }
}

@media (min-width: 1400px) {
  .xc-header-two__search input {
    min-width: 646px;
  }
}

.xc-header-two__search input:focus {
  outline: none;
}

.xc-header-two__search button {
  position: absolute;
  right: 30px;
  top: 15px;
  font-size: 22px;
  color: var(--swiftcart-black);
}

.xc-header-two__search select,
.xc-header-two__search .nice-select {
  font-size: 16px;
  color: var(--swiftcart-black);
  border-radius: 0;
  height: 40px;
  line-height: 40px;
  min-width: 145px;
  border: 0;
  font-family: var(--swiftcart-heading-font);
  border-left: 1px solid var(--swiftcart-base);
}

.xc-header-two__right {
  display: flex;
  align-items: center;
  gap: 45px;
}

@media (min-width: 1200px) {
  .xc-header-two__right {
    gap: 60px;
  }
}

.xc-header-two__btns {
  display: flex;
  gap: 23px;
}

.xc-header-two__btn {
  display: inline-block;
  font-size: 14px;
  font-family: var(--swiftcart-heading-font);
  color: var(--swiftcart-white);
  position: relative;
}

.xc-header-two__btn .xc-cart-count {
  position: absolute;
  top: -5px;
  right: -10px;
  width: 20px;
  height: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiftcart-black);
  background-color: var(--swiftcart-white);
  border-radius: 50%;
  line-height: 1;
}

.xc-header-two__btn:hover {
  color: var(--swiftcart-white);
}

.xc-header-two__btn i {
  display: block;
  text-align: center;
  font-size: 25px;
  line-height: 1;
}

.xc-header-two__cta {
  display: inline-flex;
  align-items: center;
  gap: 25px;
}

.xc-header-two__cta a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.xc-header-two__cta a i {
  position: relative;
  top: 2px;
  line-height: 1;
  font-size: 20px;
}

.xc-header-two__bottom {
  background-color: var(--swiftcart-white);
  padding: 16px 0;
  border-bottom: 1px solid var(--swiftcart-border-color);
}

.xc-header-two__bottom .nice-select {
  background-color: #F2F4F5;
  color: var(--swiftcart-black);
  border: 0;
  height: 48px;
  line-height: 48px;
}

.xc-header-two__bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.xc-header-two__bottom-left {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 25px;
}

.xc-header-two__bottom-right {
  flex-shrink: 0;
}

.xc-header-three {
  background-color: var(--swiftcart-white);
  box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.1);
}

.xc-header-three__top {
  background-color: var(--swiftcart-black);
}

.xc-header-three__top .xc-header-two__cta a {
  color: var(--swiftcart-white);
}

.xc-header-three__top .xc-header-two__cta a:hover {
  color: var(--swiftcart-base);
}

.xc-header-three .xc-header-two__btn i {
  color: var(--swiftcart-black);
}

.xc-header-three .xc-header-two__btn .xc-cart-count {
  background-color: var(--swiftcart-black);
  color: var(--swiftcart-white);
  line-height: 1;
}

.xc-transparent-header .xc-header-two__btn {
  color: var(--swiftcart-black);
}

.xc-header-landing-btn .swiftcart-btn {
  padding: 10px 30px;
}

/*----------------------------------------*/
/*  02. DRAWER CSS START
/*----------------------------------------*/
/*--------------------------------------------------------------
# xc-mobile Nav
--------------------------------------------------------------*/
.xc-mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: visible;
}

.xc-mobile-nav__content {
  width: 300px;
  background-color: #fff;
  z-index: 10;
  position: absolute;
  right: 0;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.xc-mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.xc-mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.xc-mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--swiftcart-black);
  opacity: 0.6;
  cursor: crosshair;
}

.xc-mobile-nav__wrapper.opened {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.xc-mobile-nav__wrapper.opened .xc-mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.xc-back-to-top-wrapper {
  position: fixed;
  right: 20px;
  bottom: 0px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  background: var(--swiftcart-black);
  box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
  color: var(--swiftcart-white);
}

.xc-back-to-top-wrapper:hover {
  background-color: var(--swiftcart-base);
}

.xc-back-to-top-wrapper svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  z-index: 99;
  position: relative;
}

.xc-back-to-top-wrapper.xc-back-to-top-btn-show {
  opacity: 1;
  bottom: 20px;
  visibility: visible;
}

/*----------------------------------------*/
/*  7.0 search and nab taggle menu  css
/*----------------------------------------*/
.xc-search-popup {
  position: fixed;
  top: 0;
  width: 100%;
  height: 230px;
  background-color: var(--swiftcart-white);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  transform: translateY(-100%);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  transition-delay: 0.7s;
}

.xc-search-popup::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 5px;
  background-color: var(--swiftcart-base);
  transition-delay: 0.3s;
  transition: 0.3s;
}

.xc-search-popup.open {
  transform: translateY(0);
  transition-delay: 0s;
}

.xc-search-popup.open::before {
  width: 100%;
  transition-delay: 0.5s;
}

.xc-search-popup__close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
  line-height: 1;
  width: 26px;
  height: 26px;
}

@media (min-width: 768px) {
  .xc-search-popup__close {
    right: 30px;
    top: 30px;
  }
}

.xc-search-popup__close::before,
.xc-search-popup__close::after {
  content: " ";
  position: absolute;
  top: 50%;
  display: inline-block;
  margin-top: -1px;
  width: 26px;
  height: 2px;
  background-color: var(--swiftcart-black);
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out, width 0.2s ease-in-out;
  right: 0;
  transform: rotate(-45deg);
}

.xc-search-popup__close::before {
  transform: rotate(45deg);
}

.xc-search-popup__close:hover::before,
.xc-search-popup__close:hover::after {
  transform: rotate(0);
  background-color: red;
}

.xc-search-popup form {
  position: relative;
}

.xc-search-popup form input {
  position: relative;
  padding-left: 1.5em;
  padding-right: 4em;
  border-radius: 50px;
  background: #fff;
  border: 1px solid #eee;
  color: var(--swiftcart-text);
  font-size: 15px;
  display: block;
  width: 300px;
  height: 55px;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.xc-search-popup form input:focus {
  outline: none;
  border-color: var(--swiftcart-base);
}

@media (min-width: 768px) {
  .xc-search-popup form input {
    width: 600px;
  }
}

.xc-search-popup form button {
  position: absolute;
  right: 30px;
  top: 15px;
  font-size: 20px;
}

.xc-search-popup form button:hover {
  color: var(--swiftcart-base);
}

.xc-search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.9;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

/*--------------------------------------------------------------
# Breadcrumb
------------------- -------------------------------------------*/
.xc-breadcrumb__area {
  position: relative;
  z-index: 1;
  background-color: #F5F5F5;
  padding: 4px 0px;
  display: flex;
  align-items: center;
}

.xc-breadcrumb__list {
  color: var(--swiftcart-base);
  font-size: 14px;
  font-family: var(--swiftcart-heading-font);
}

.xc-breadcrumb__list .dvdr {
  color: var(--swiftcart-text);
  padding-left: 5px;
  padding-right: 5px;
  font-size: 10px;
}

.xc-breadcrumb__list a {
  color: var(--swiftcart-black);
  transition: 0.3s;
}

.xc-breadcrumb__list a:hover {
  color: var(--swiftcart-base);
}

/*--------------------------------------------------------------
# 04. MENU CSS
--------------------------------------------------------------*/
/*----------------------------------------
4.1 Mean Menu css
----------------------------------------*/
/*----------------------------------------*/
/*  4.2 Meanmenu css
/*----------------------------------------*/
.mean-remove {
  display: none !important;
}

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

.mean-container a.meanmenu-reveal {
  width: 22px;
  height: 22px;
  padding: 13px 13px 11px 13px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  color: var(--swiftcart-white);
  text-decoration: none;
  font-size: 16px;
  text-indent: -9999em;
  line-height: 22px;
  font-size: 1px;
  font-weight: 700;
  display: none !important;
}

.mean-container a.meanmenu-reveal span {
  display: block;
  background: var(--swiftcart-white);
  height: 3px;
  margin-top: 3px;
}

.mean-container .mean-push {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  clear: both;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
  float: left;
  width: 100%;
  margin-top: 44px;
}

.mean-container .mean-nav .wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
}

.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0;
}

.mean-container .mean-nav ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
}

.mean-container .mean-nav ul li {
  position: relative;
  float: left;
  width: 100%;
}

.mean-container .mean-nav ul li.dropdown-opened>a,
.mean-container .mean-nav ul li.dropdown-opened>span {
  color: var(--swiftcart-base);
}

.mean-container .mean-nav ul li.dropdown-opened>a.mean-expand.mean-clicked,
.mean-container .mean-nav ul li.dropdown-opened>span.mean-expand.mean-clicked {
  background: var(--swiftcart-base);
  color: var(--swiftcart-white);
  border-color: var(--swiftcart-base);
}

.mean-container .mean-nav ul li.dropdown-opened>a.mean-expand.mean-clicked i,
.mean-container .mean-nav ul li.dropdown-opened>span.mean-expand.mean-clicked i {
  color: var(--swiftcart-white);
}

.mean-container .mean-nav ul li.mean-last {
  border-bottom: none;
  margin-bottom: 0;
}

.mean-container .mean-nav ul li>a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav ul li>a>i {
  display: none;
}

.mean-container .mean-nav ul li a,
.mean-container .mean-nav ul li span {
  display: block;
  float: left;
  width: 90%;
  padding: 10px 5%;
  margin: 0;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  padding: 10px 0;
  color: #222222;
  border-top: 1px solid #ebebeb;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  border-color: grey;
  transition: 0.3s;
}

.mean-container .mean-nav ul li a:hover,
.mean-container .mean-nav ul li span:hover {
  color: var(--swiftcart-base);
}

.mean-container .mean-nav ul li a:hover i,
.mean-container .mean-nav ul li span:hover i {
  color: var(--swiftcart-white);
}

.mean-container .mean-nav ul li a.mean-expand,
.mean-container .mean-nav ul li span.mean-expand {
  margin-top: 1px;
  width: 26px;
  height: 32px;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  font-weight: 700;
  background: transparent;
  font-size: 14px;
  margin-top: 5px;
  padding: 0 !important;
  line-height: 14px;
  border: 1px solid #ebebeb !important;
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: var(--swiftcart-white);
  line-height: 30px;
  top: 0;
  font-weight: 400;
}

.mean-container .mean-nav ul li a.mean-expand:hover,
.mean-container .mean-nav ul li span.mean-expand:hover {
  background: var(--swiftcart-base);
  color: var(--swiftcart-black);
  border-color: var(--swiftcart-base);
}

.mean-container .mean-nav ul li a.mean-expand:hover i,
.mean-container .mean-nav ul li span.mean-expand:hover i {
  color: var(--swiftcart-white);
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked,
.mean-container .mean-nav ul li span.mean-expand.mean-clicked {
  color: var(--swiftcart-white);
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked:hover,
.mean-container .mean-nav ul li span.mean-expand.mean-clicked:hover {
  background: var(--swiftcart-base);
  color: var(--swiftcart-white);
  border-color: var(--swiftcart-base);
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked:hover i,
.mean-container .mean-nav ul li span.mean-expand.mean-clicked:hover i {
  color: var(--swiftcart-white);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  color: var(--swiftcart-white);
}

.mean-container .mean-nav ul li li a {
  width: 80%;
  padding: 10px 10%;
  text-shadow: none !important;
  visibility: visible;
}

.mean-container .mean-nav ul li li li a {
  width: 70%;
  padding: 10px 15%;
}

.mean-container .mean-nav ul li li li li a {
  width: 60%;
  padding: 10px 20%;
}

.mean-container .mean-nav ul li li li li li a {
  width: 50%;
  padding: 10px 25%;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
  float: left;
  width: 100%;
  position: relative;
  padding: 4px 0;
  min-height: 42px;
  z-index: 999999;
  margin-bottom: 60px;
}

.mean-container .mean-bar,
.mean-container .mean-bar * {
  /* Fix for box sizing on Foundation Framework etc. */
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.xc-mobile-nav__close {
  font-size: 25px;
  position: absolute;
  top: 30px;
  right: 10px;
  background-color: var(--swiftcart-white);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}

.xc-mobile-nav__close::before,
.xc-mobile-nav__close::after {
  right: 7px;
}

.xc-mobile-nav__close:hover {
  color: var(--swiftcart-base);
}

.xc-mobile-nav__contact {
  margin-bottom: 60px;
}

.xc-mobile-nav__contact li+li {
  margin-top: 20px;
}

.xc-mobile-nav__contact i {
  margin-right: 10px;
  color: var(--swiftcart-base);
}

.xc-mobile-nav__contact a {
  color: #222222;
  transition: 0.3s;
  font-size: 16px;
  opacity: 0.8;
}

.xc-mobile-nav__contact a:hover {
  color: var(--swiftcart-base);
}

.xc-mobile-nav__social a {
  width: 45px;
  height: 45px;
  border-radius: 5px;
  background-color: var(--swiftcart-white);
  line-height: 45px;
  text-align: center;
  color: var(--swiftcart-base);
  transition: 0.3s;
}

.xc-mobile-nav__social a:hover {
  background-color: var(--swiftcart-base);
  color: var(--swiftcart-white);
}

.xc-mobile-nav__social a+a {
  margin-left: 15px;
}

/*----------------------------------------
4.2 Menu css
----------------------------------------*/
/*----------------------------------------*/
/*  4.1 Main menu css
/*----------------------------------------*/
.xc-main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  transition: 0.3s;
}

.xc-main-menu ul li+li {
  margin-left: 25px;
}

.xc-main-menu ul li a {
  display: inline-block;
  font-size: 14px;
  color: var(--swiftcart-black);
  padding: 10px 0;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--swiftcart-heading-font);
  transition: 0.3s;
}

.xc-main-menu ul li.menu-item-has-children>a,
.xc-main-menu ul li.has-dropdown>a {
  position: relative;
}

.xc-main-menu ul li.menu-item-has-children>a::after,
.xc-main-menu ul li.has-dropdown>a::after {
  content: "\f107";
  transform: translateY(1px);
  font-size: 14px;
  font-weight: 900;
  color: var(--swiftcart-black);
  font-family: "Font Awesome 6 Free";
  margin-left: 5px;
  display: inline-block;
  transition: 0.3s;
}

.xc-main-menu ul li .submenu {
  padding: 20px 0;
  display: inline-block;
  margin: 0;
  position: absolute;
  top: 120%;
  left: 0;
  width: 230px;
  background: var(--swiftcart-white);
  z-index: 99;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0px 4px 60px rgba(69, 105, 231, 0.15);
  border-radius: 0px 0px 5px 5px;
  border: 0px solid transparent;
  transition: 0.4s;
  border-top: 2px solid var(--swiftcart-base);
  pointer-events: none;
}

.xc-main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  transition: 0.3s;
}

.xc-main-menu ul li .submenu li.menu-item-has-children>a::after,
.xc-main-menu ul li .submenu li.has-dropdown>a::after {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%) rotate(-90deg) scale(0);
  transition: 0.3s;
}

.xc-main-menu ul li .submenu li a {
  padding: 10px 30px;
  font-size: 14px;
  position: relative;
  z-index: 1;
  color: var(--swiftcart-black);
  width: 100%;
  transition: 0.3s;
}

.xc-main-menu ul li .submenu li .submenu {
  left: 120%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.xc-main-menu ul li .submenu li:hover>a {
  color: var(--swiftcart-base);
}

.xc-main-menu ul li .submenu li:hover>a::after {
  color: var(--swiftcart-base);
  transform: translateY(-50%) rotate(-90deg) scale(1);
}

.xc-main-menu ul li .submenu li:hover>.submenu {
  left: 100%;
  visibility: visible;
  opacity: 1;
}

.xc-main-menu ul li:hover>a {
  color: var(--swiftcart-base);
}

.xc-main-menu ul li:hover>a::after {
  color: var(--swiftcart-base);
  transform: rotate(180deg);
}

.xc-main-menu ul li:hover>.submenu {
  top: 100%;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.xc-main-menu ul li.current a {
  color: var(--swiftcart-base);
}

.xc-main-menu ul li.current a::after {
  color: var(--swiftcart-base);
}

.xc-main-menu.xc-white-menu ul li a {
  color: var(--swiftcart-white);
}

.xc-main-menu.xc-white-menu ul li.menu-item-has-children>a::after,
.xc-main-menu.xc-white-menu ul li.has-dropdown>a::after {
  color: var(--swiftcart-white);
}

.xc-main-menu.xc-white-menu ul li .submenu {
  background: var(--swiftcart-white);
}

.xc-main-menu.xc-white-menu ul li .submenu li a {
  color: var(--swiftcart-black);
}

.xc-main-menu.xc-white-menu ul li .submenu li a::before {
  background-color: var(--swiftcart-base);
}

.xc-main-menu.xc-white-menu ul li .submenu li:hover>a {
  color: var(--swiftcart-base);
}

.xc-main-menu.xc-white-menu ul li .submenu li:hover>a::after {
  color: var(--swiftcart-base);
}

.xc-main-menu.xc-white-menu ul li:hover>a {
  color: var(--swiftcart-base);
}

.xc-main-menu.xc-white-menu ul li:hover>a::after {
  color: var(--swiftcart-base);
}

.xc-main-menu.xc-white-menu ul li.current a {
  color: var(--swiftcart-secondary);
}

.xc-main-menu.xc-white-menu ul li.current a::after {
  color: var(--swiftcart-secondary);
}

.xc-main-menu.xc-white-menu ul li.current a:hover {
  color: var(--swiftcart-base);
}

.xc-main-menu.xc-white-menu ul li.current a:hover::after {
  color: var(--swiftcart-base);
}

@media (min-width: 1200px) and (max-width: 1400px) {

  .xc-main-menu li:nth-last-child(1) ul li>ul,
  .xc-main-menu li:nth-last-child(2) ul li>ul {
    left: auto !important;
    right: 100%;
  }
}

.xc-main-menu ul li ul li.current>a,
.xc-main-menu ul li ul li:hover>a {
  color: var(--swiftcart-base);
}

.xc-main-menu.xc-white-menu ul li ul li.current>a,
.xc-main-menu.xc-white-menu ul li ul li:hover>a {
  color: var(--swiftcart-base);
}

/*--------------------------------------------------------------
05. BLOG CSS
--------------------------------------------------------------*/
/*----------------------------------------
5.1 Postbox css
----------------------------------------*/
.xc-blog-details_tag {
  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: 50px;
  border-top: 1px solid var(--swiftcart-border-color);
  border-bottom: 1px solid var(--swiftcart-border-color);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.xc-blog-details_tag .tagcloud a {
  background-color: transparent;
  padding: 0;
  border: 0;
}

.xc-blog-details_tag .tagcloud a:not(:last-child):after {
  content: ",";
}

.xc-blog-details_tag .tagcloud a:hover {
  background-color: transparent;
  color: var(--swiftcart-base);
}

.xc-blog-details_tag .catscloud,
.xc-blog-details_tag .tagcloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.xc-blog-details_tag .catscloud span,
.xc-blog-details_tag .tagcloud span {
  font-size: 20px;
  color: var(--swiftcart-black);
  font-weight: 700;
  font-family: var(--swiftcart-heading-font);
}

blockquote {
  background: #effbf2;
  padding: 35px 50px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 35px;
  position: relative;
  text-transform: capitalize;
}

blockquote:after {
  content: "\f10e";
  font-weight: 700;
  position: absolute;
  right: 30px;
  bottom: 30px;
  font-size: 100px;
  font-family: "Font Awesome 6 Free";
  color: var(--swiftcart-base);
  opacity: 0.7;
}

@media (min-width: 768px) {
  blockquote {
    padding: 35px 50px;
  }
}

blockquote p {
  line-height: 1.5;
  font-size: 20px;
  color: #57565e;
  font-weight: 400;
}

blockquote cite {
  font-size: 18px;
  display: block;
  margin-top: 10px;
  color: #070337;
  font-style: inherit;
  font-weight: 600;
  position: relative;
}

blockquote cite::before {
  content: "";
  font-size: 28px;
  color: var(--swiftcart-base);
  padding-bottom: 0px;
  display: inline-block;
  background: var(--swiftcart-base);
  height: 2px;
  width: 40px;
  font-weight: 400;
  text-align: center;
  top: -4px;
  margin-right: 10px;
  position: relative;
}

.xc-postbox__title {
  font-size: 35px;
}

@media (min-width: 992px) {
  .xc-postbox__title {
    font-size: 40px;
  }
}

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

.xc-blog-list__item,
.xc-blog-one__item {
  transition: 0.3s;
}

.xc-blog-list__item:hover,
.xc-blog-one__item:hover {
  border-color: var(--swiftcart-base);
}

.xc-blog-list__item:hover .xc-blog-list__thumb img,
.xc-blog-list__item:hover .xc-blog-one__thumb img,
.xc-blog-one__item:hover .xc-blog-list__thumb img,
.xc-blog-one__item:hover .xc-blog-one__thumb img {
  transform: scale(1.1) rotate(-2deg);
}

.xc-blog-list__thumb,
.xc-blog-one__thumb {
  position: relative;
  overflow: hidden;
}

.xc-blog-list__thumb img,
.xc-blog-one__thumb img {
  transition: 0.3s;
}

.xc-blog-list__content,
.xc-blog-one__content {
  padding: 20px 0;
}

.xc-blog-list__title,
.xc-blog-one__title {
  margin-bottom: 20px;
}

.xc-blog-list__title a,
.xc-blog-one__title a {
  font-size: 22px;
}

.xc-blog-list__title a:hover,
.xc-blog-one__title a:hover {
  color: var(--swiftcart-base);
}

.xc-blog-list__except,
.xc-blog-one__except {
  margin-bottom: 30px;
}

.xc-blog-list__meta,
.xc-blog-one__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.xc-blog-list__meta li,
.xc-blog-one__meta li {
  padding-right: 10px;
  border-right: 1px solid var(--swiftcart-text);
  line-height: 1;
  position: relative;
}

.xc-blog-list__meta li:last-child,
.xc-blog-one__meta li:last-child {
  padding-right: 0px;
  border-right: 0;
}

.xc-blog-list__meta li::before,
.xc-blog-one__meta li::before {
  content: "";
  position: relative;
  top: -3px;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  background-color: var(--swiftcart-text);
  border-radius: 50%;
  display: inline-block;
}

.xc-blog-list__meta span,
.xc-blog-list__meta a,
.xc-blog-one__meta span,
.xc-blog-one__meta a {
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.xc-blog-list__meta span i,
.xc-blog-list__meta span svg,
.xc-blog-list__meta a i,
.xc-blog-list__meta a svg,
.xc-blog-one__meta span i,
.xc-blog-one__meta span svg,
.xc-blog-one__meta a i,
.xc-blog-one__meta a svg {
  color: var(--swiftcart-base);
  font-weight: 500;
}

.xc-blog-list__meta a:hover,
.xc-blog-one__meta a:hover {
  color: var(--swiftcart-base);
}

.xc-blog-list__meta .xc-post-date,
.xc-blog-one__meta .xc-post-date {
  display: none;
}

@media (min-width: 1400px) {

  .xc-blog-list__meta .xc-post-date,
  .xc-blog-one__meta .xc-post-date {
    display: inline-flex;
  }
}

.xc-blog-list__meta-2,
.xc-blog-one__meta-2 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  writing-mode: vertical-lr;
  text-align: center;
  background-color: #E8E8E8;
  padding: 0px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-transform: capitalize;
  font-size: 10px;
}

@media (min-width: 576px) {

  .xc-blog-list__meta-2,
  .xc-blog-one__meta-2 {
    font-size: 13px;
  }
}

@media (min-width: 768px) {

  .xc-blog-list__meta-2,
  .xc-blog-one__meta-2 {
    font-size: 14px;
  }
}

@media (min-width: 1400px) {

  .xc-blog-list__meta-2,
  .xc-blog-one__meta-2 {
    font-size: 16px;
  }
}

.xc-blog-list__cats,
.xc-blog-one__cats {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-block;
  background-color: var(--swiftcart-white);
  padding: 0px 15px;
  text-transform: capitalize;
}

.xc-blog-list__cats:hover,
.xc-blog-one__cats:hover {
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-base);
}

.xc-blog-list__thumb img {
  object-fit: cover;
}

/*----------------------------------------
5.2 Sidebar css
----------------------------------------*/
/*----------------------------------------*/
/*  5.3 Sidebar css
/*----------------------------------------*/
@media (min-width: 992px) {
  .xc-sidebar {
    padding-left: 50px;
  }
}

.xc-sidebar__widget {
  padding: 30px 15px;
  background: var(--swiftcart-white);
  border-radius: 10px;
}

@media (min-width: 768px) {
  .xc-sidebar__widget {
    padding: 50px 30px;
  }
}

.xc-sidebar__widget+.xc-sidebar__widget {
  margin-top: 40px;
}

.xc-sidebar__widget-title {
  color: var(--swiftcart-black);
  font-size: 22px;
  font-weight: 700;
  position: relative;
  margin-bottom: 30px;
  line-height: 1.4;
  text-transform: capitalize;
}

.xc-sidebar__widget ul.xc-sidebar__categories {
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 0;
}

.xc-sidebar__widget ul.xc-sidebar__categories li {
  list-style: none;
}

.xc-sidebar__widget ul.xc-sidebar__categories li+li {
  margin-top: 10px;
}

.xc-sidebar__widget ul.xc-sidebar__categories li a {
  font-size: 16px;
  line-height: 1;
  color: var(--swiftcart-black);
  position: relative;
  padding-left: 5px;
  display: inline-block;
  width: 100%;
  padding: 19px 20px;
  padding-left: 40px;
  transition: 0.3s;
  border: 1px solid var(--swiftcart-border-color);
  position: relative;
  z-index: 1;
  border-radius: 10px;
}

.xc-sidebar__widget ul.xc-sidebar__categories li a span {
  position: absolute;
  right: 20px;
}

.xc-sidebar__widget ul.xc-sidebar__categories li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  bottom: 0;
  background-color: var(--swiftcart-base);
  z-index: -1;
  border-radius: 10px;
  transition: 0.3s;
}

.xc-sidebar__widget ul.xc-sidebar__categories li a::after {
  position: absolute;
  left: 18px;
  top: 21px;
  font-size: 11px;
  content: "\f105";
  color: var(--swiftcart-text);
  font-family: "icomoon" !important;
  transition: 0.3s;
}

.xc-sidebar__widget ul.xc-sidebar__categories li a:hover {
  color: var(--swiftcart-white);
}

.xc-sidebar__widget ul.xc-sidebar__categories li a:hover::after {
  color: var(--swiftcart-white);
}

.xc-sidebar__widget ul.xc-sidebar__categories li a:hover::before {
  width: 100%;
}

.xc-sidebar__widget ul.xc-sidebar__categories li ul {
  padding-left: 25px;
  padding-top: 20px;
}

.xc-sidebar__search {
  position: relative;
}

.xc-sidebar__search input {
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: #F2F4F8;
  border: 0;
  color: #111111;
  padding: 0 25px;
  text-transform: capitalize;
  outline: none;
  padding-top: 3px;
  padding-right: 70px;
}

.xc-sidebar__search button {
  position: absolute;
  top: 0;
  right: 20px;
  height: 100%;
  color: #111;
  line-height: 60px;
  border-radius: 0 7px 7px 0;
  transition: 0.3s;
}

.xc-sidebar__search button:hover {
  color: var(--swiftcart-base);
}

.xc-sidebar__blog+.xc-sidebar__blog {
  margin-top: 10px;
}

.xc-sidebar__blog {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

@media (min-width: 768px) {
  .xc-sidebar__blog {
    gap: 15px;
    flex-direction: row;
    align-items: center;
  }
}

.xc-sidebar__blog-thumb img {
  width: 85px;
  height: 85px;
  object-fit: cover;
}

.xc-sidebar__blog-meta span {
  margin-right: 10px;
  font-size: 13px;
}

.xc-sidebar__blog-meta span i {
  color: var(--swiftcart-base);
  margin-right: 5px;
}

.xc-sidebar__blog-title {
  line-height: 1;
}

.xc-sidebar__blog-title a {
  font-size: 16px;
  color: var(--swiftcart-black);
  font-weight: 600;
  line-height: 1;
  background-image: linear-gradient(currentcolor, currentcolor), linear-gradient(currentcolor, currentcolor);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: 0.4s;
}

.xc-sidebar__blog-title a:hover {
  opacity: 1;
  background-size: 0% 1px, 100% 1px;
}

.catscloud,
.tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catscloud a,
.tagcloud a {
  display: inline-block;
  background-color: var(--swiftcart-gray);
  color: var(--swiftcart-text);
  padding: 5px 15px;
  transition: 0.3s;
}

.catscloud a:hover,
.tagcloud a:hover {
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-base);
}

/*----------------------------------------
5.3 Comment css
----------------------------------------*/
.xc-comment {
  margin-top: 60px;
}

.xc-comment ul li {
  margin-bottom: 10px;
  list-style: none;
}

.xc-comment ul li.children {
  margin-left: 15px;
}

@media (min-width: 768px) {
  .xc-comment ul li.children {
    margin-left: 80px;
  }
}

.xc-comment-form-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 40px;
}

.xc-comment-input {
  position: relative;
  margin-bottom: 30px;
}

.xc-comment-input span {
  font-weight: 600;
  color: var(--swiftcart-black);
  margin-bottom: 12px;
  display: block;
}

.xc-comment-input input,
.xc-comment-input textarea {
  height: 55px;
  padding: 0 20px;
  width: 100%;
  font-size: 14px;
  color: var(--swiftcart-black);
  outline: none;
  border: 1px solid transparent;
  border-radius: 7px;
  background-color: var(--swiftcart-gray);
}

.xc-comment-input textarea {
  height: 175px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.xc-comment-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 35px;
}

.xc-comment-box {
  margin-bottom: 50px;
}

.xc-comment-avater {
  margin-right: 20px;
}

.xc-comment-avater img {
  width: 60px;
  height: 60px;
}

.xc-comment-name {
  margin-bottom: 15px;
}

.xc-comment-name h5 {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.xc-comment-name span {
  color: var(--swiftcart-black);
  font-size: 16px;
}

.xc-comment-text {
  margin-left: 0;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .xc-comment-text {
    margin-left: 80px;
  }
}

.xc-comment-text p {
  font-size: 16px;
  color: var(--swiftcart-text);
  margin-bottom: 15px;
}

.xc-comment-reply {
  margin-top: 10px;
}

.xc-comment-reply a {
  display: inline-block;
  color: var(--swiftcart-base);
  background-color: rgba(var(--swiftcart-base-rgb), 0.1);
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  font-weight: 500;
  font-size: 14px;
  border-radius: 4px;
  transition: 0.3s;
}

.xc-comment-reply a:hover {
  color: var(--swiftcart-white);
  background: var(--swiftcart-base);
}

.xc-comment-agree {
  padding-left: 5px;
}

.xc-comment-agree input {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  display: block;
  width: 14px;
  height: 14px;
  background: var(--swiftcart-white);
  border: 1px solid var(--swiftcart-border-color);
  outline: none;
  flex: 0 0 auto;
  -webkit-transform: translateY(7px);
  -moz-transform: translateY(7px);
  -ms-transform: translateY(7px);
  -o-transform: translateY(7px);
  transform: translateY(7px);
}

.xc-comment-agree input:checked {
  position: relative;
  background-color: var(--swiftcart-base);
  border-color: transparent;
}

.xc-comment-agree input:checked::after {
  box-sizing: border-box;
  content: "\f00c";
  font-weight: 700;
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-size: 10px;
  color: var(--swiftcart-white);
  top: 46%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.xc-comment-agree input:hover {
  cursor: pointer;
}

.xc-comment-agree label {
  padding-left: 8px;
  color: var(--swiftcart-text);
}

.xc-comment-agree label a {
  color: var(--swiftcart-black);
  font-weight: 600;
  padding-left: 4px;
}

.xc-comment-agree label a:hover {
  color: var(--swiftcart-base);
}

.xc-comment-agree label:hover {
  cursor: pointer;
}

/*--------------------------------------------------------------
# 06 ELEMENETS css
--------------------------------------------------------------*/
/*----------------------------------------
6.1 Buttons
----------------------------------------*/
/*--------------------------------------------------------------
# Buttons
------------------- -------------------------------------------*/


.xc-video-btn {
  font-size: 30px;
  width: 100px;
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--swiftcart-base);
  color: var(--swiftcart-white);
  border-radius: 48% 52% 54% 46%/30% 32% 68% 70%;
  position: relative;
  box-shadow: 0 0 0 0 rgba(var(--swiftcart-base-rgb), 0.5);
  animation: pulsing 3s linear infinite var(--s, 0s);
  transition: all 0.5s ease;
}

.xc-video-btn::after,
.xc-video-btn::before {
  border-radius: 48% 52% 54% 46%/30% 32% 68% 70%;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  box-shadow: 0 0 0 0 rgba(var(--swiftcart-base-rgb), 0.5);
  animation: pulsing 3s linear infinite var(--s, 0s);
}

.xc-video-btn::before {
  --s: 2s;
}

.xc-video-btn::after {
  --s: 4s;
}

.xc-video-btn:hover {
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-secondary);
  box-shadow: 0 0 0 0 rgba(var(--swiftcart-secondary-rgb), 0.5);
}

.xc-video-btn:hover::after,
.xc-video-btn:hover::before {
  box-shadow: 0 0 0 0 rgba(var(--swiftcart-secondary-rgb), 0.5);
}

.xc-sec-heading-btn {
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-black);
  display: inline-block;
  padding: 0px 11px;
  text-transform: capitalize;
  font-size: 13px;
}

.xc-sec-heading-btn:hover {
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-secondary);
}


.xc-wish-btn {
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.xc-wish-btn i {
  color: #8a8a8a;
  transition: color 0.2s ease-in-out;
}

.xc-wish-btn:hover {
  border-color: #dc3545;
  background-color: #fdeeee;
}

.xc-wish-btn:hover i {
  color: #dc3545;
}

.xc-wish-btn.active {
  background: #dc3545;
  border-color: #dc3545;
}

.xc-wish-btn.active i {
  color: #fff;
}

.xc-download-btn {
  display: inline-block;
  background-color: var(--swiftcart-black);
  padding: 10px 20px;
  border-radius: 6px;
}

@media (min-width: 1400px) {
  .xc-download-btn {
    padding: 15px 20px;
  }
}

.xc-download-btn:hover {
  background-color: var(--swiftcart-text);
}

/*----------------------------------------
6.2 Section Title
----------------------------------------*/
.xc-sec-heading {
  margin-bottom: 20px;
}

.xc-sec-heading.xc-has-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.xc-sec-heading.text-white .xc-sec-heading__title {
  color: var(--swiftcart-white);
}

.xc-sec-heading__subtitle {
  display: inline-block;
  font-weight: 600;
  font-family: var(--swiftcart-heading-font);
  text-transform: uppercase;
  color: var(--swiftcart-base);
  margin-bottom: 5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.xc-sec-heading__subtitle img {
  width: 18px;
  height: 18px;
}

.xc-sec-heading__title {
  font-size: 32px;
  text-transform: capitalize;
}

.xc-sec-heading__title span {
  position: relative;
  top: 3px;
}

.xc-sec-heading__title.xc-style-3 {
  text-transform: uppercase;
}

.xc-sec-heading-two {
  margin-bottom: 20px;
}

.xc-sec-heading-two .xc-sec-heading__title {
  font-size: 24px;
  font-weight: 600;
}

.xc-sec-heading-two .xc-sec-heading__subtitle {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.xc-sec-heading-two .xc-sec-heading__subtitle.has-before {
  position: relative;
}

.xc-sec-heading-two .xc-sec-heading__subtitle.has-before::before {
  content: "";
  height: 18px;
  width: 10px;
  border-radius: 4px;
  background-color: var(--swiftcart-base);
}

.xc-sec-heading.xc-sec-heading__three {
  margin-bottom: 45px;
}

/*----------------------------------------
6.3 Main SLider
----------------------------------------*/
.xc-main-slider {
  border-radius: 10px;
}

@media (min-width: 1200px) {
  .xc-main-slider {
    margin-left: 40px;
    border: 1px solid var(--swiftcart-border-color);
    padding: 17px;
  }
}

.xc-main-slider__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 30px;
  padding-top: 35px;
  position: relative;
  border-radius: 10px;
  background-color: var(--swiftcart-black);
  flex-direction: column-reverse;
}

@media (min-width: 992px) {
  .xc-main-slider__item {
    padding: 0 75px;
    padding-top: 35px;
    flex-direction: inherit;
    align-items: center;
  }
}

.xc-main-slider__subtitle {
  display: inline-block;
  padding: 6px 16px;
  background-color: #EFD33D;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--swiftcart-black);
  margin-bottom: 10px;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(-30px);
}

.xc-main-slider__title {
  color: var(--swiftcart-white);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.25;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(-30px);
}

@media (min-width: 768px) {
  .xc-main-slider__title {
    font-size: 40px;
  }
}

.xc-main-slider__info {
  color: #ADB7BC;
  margin-bottom: 30px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(-30px);
}

.xc-main-slider__btn {
  margin-bottom: 25px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(30px);
}

.xc-main-slider__right {
  flex-shrink: 0;
}

.xc-main-slider__img {
  text-align: center;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(30px);
  margin-left: 0;
  margin-bottom: 40px;
}

@media (min-width: 1200px) {
  .xc-main-slider__img {
    position: absolute;
    bottom: 0;
    right: 15px;
    margin-left: 0px;
    margin-bottom: 0px;
  }
}

@media (min-width: 1400px) {
  .xc-main-slider__img {
    position: absolute;
    bottom: 0;
    right: 75px;
    margin-left: 0px;
    margin-bottom: 0px;
  }
}

.xc-main-slider__price {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  font-weight: 600;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-base);
}

.xc-main-slider .owl-carousel .owl-item img {
  max-width: 100%;
  width: inherit;
}

.xc-main-slider__carousel .active .xc-main-slider__subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1100ms;
}

.xc-main-slider__carousel .active .xc-main-slider__info,
.xc-main-slider__carousel .active .xc-main-slider__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}

.xc-main-slider__carousel .active .xc-main-slider__info {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1100ms;
}

.xc-main-slider__carousel .active .xc-main-slider__btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1200ms;
}

.xc-main-slider__carousel .active .xc-main-slider__img {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1200ms;
}

.xc-main-slider__carousel.owl-carousel .owl-nav {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  text-align: right;
  position: absolute;
  outline: none;
  top: 46%;
  transform: translateY(-50%);
}

.xc-main-slider__carousel.owl-carousel .owl-nav .owl-next,
.xc-main-slider__carousel.owl-carousel .owl-nav .owl-prev {
  position: absolute;
  z-index: 4;
  left: 25px;
  top: 0;
  width: 53px;
  height: 53px;
  color: rgba(var(--swiftcart-white-rgb, 255, 255, 255), 0.2);
  transition: all 500ms ease;
  font-size: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(var(--swiftcart-white-rgb, 255, 255, 255), 0.2);
  padding: 0 !important;
  margin: 0;
  background-color: transparent;
}

.xc-main-slider__carousel.owl-carousel .owl-nav .owl-next:hover,
.xc-main-slider__carousel.owl-carousel .owl-nav .owl-prev:hover {
  background-color: transparent;
  border-color: var(--swiftcart-white, #ffffff);
  color: var(--swiftcart-white, #ffffff);
}

.xc-main-slider__carousel.owl-carousel .owl-nav .owl-next {
  left: auto;
  right: 25px;
}

.xc-main-slider-two.xc-main-slider {
  margin-left: 0;
  border: 0;
  padding: 0;
}

.xc-main-slider-two .xc-main-slider__subtitle {
  background-color: transparent;
  color: var(--swiftcart-base);
  padding: 0;
}

.xc-main-slider-two .xc-main-slider__item {
  padding: 25px 30px;
}

@media (min-width: 992px) {
  .xc-main-slider-two .xc-main-slider__item {
    padding: 25px 55px;
  }
}

.xc-main-slider-two .xc-main-slider__img {
  position: relative;
  right: auto;
  bottom: auto;
}

.xc-main-slider-two .xc-main-slider__price {
  border: 3px solid #ffffff;
}

.xc-main-slider-two .owl-dots {
  display: flex;
  gap: 5px;
  position: absolute;
  bottom: 55px;
  left: 55px;
}

.xc-main-slider-two .owl-dots .owl-dot span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ADB7BC;
}

.xc-main-slider-two .owl-dots .owl-dot.active span {
  background-color: var(--swiftcart-base);
}

.xc-slider-three {
  background-color: #F4F4F4;
}

.xc-slider-three__content {
  position: relative;
  margin-top: 60px;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .xc-slider-three__content {
    padding-bottom: 0;
  }
}

@media (min-width: 992px) {
  .xc-slider-three__content {
    margin-top: 0;
  }
}

.xc-slider-three__img {
  position: relative;
}

.xc-slider-three__img::before {
  content: "";
  width: 316px;
  height: 316px;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  z-index: -1;
  position: absolute;
  display: inline-block;
  transform: translateY(-50%) translateX(-50%);
  background-color: var(--swiftcart-white);
}

@media (min-width: 992px) {
  .xc-slider-three__img::before {
    width: 516px;
    height: 516px;
  }
}

.xc-slider-three__bigtitle {
  font-weight: 900;
  color: #333333;
  opacity: 0.04;
  position: absolute;
  line-height: 1;
  font-size: 50px;
  top: -30px;
}

@media (min-width: 768px) {
  .xc-slider-three__bigtitle {
    font-size: 70px;
  }
}

@media (min-width: 1200px) {
  .xc-slider-three__bigtitle {
    font-size: 100px;
    top: -80px;
  }
}

@media (min-width: 1400px) {
  .xc-slider-three__bigtitle {
    font-size: 130px;
    top: -80px;
  }
}

.xc-slider-three__subtitle {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 6.6px;
  margin-bottom: 20px;
  text-transform: uppercase;
  display: inline-block;
  color: var(--swiftcart-black);
  font-family: var(--swiftcart-heading-font);
}

@media (min-width: 768px) {
  .xc-slider-three__subtitle {
    letter-spacing: 16.6px;
  }
}

@media (min-width: 992px) {
  .xc-slider-three__subtitle {
    font-size: 20px;
  }
}

.xc-slider-three__subtitle i {
  text-decoration: underline;
  font-style: normal;
  display: inline;
}

.xc-slider-three__title {
  font-weight: 300;
  text-transform: uppercase;
  color: var(--swiftcart-black);
  margin-bottom: 60px;
  font-size: 35px;
}

@media (min-width: 992px) {
  .xc-slider-three__title {
    font-size: 53px;
  }
}

@media (min-width: 1400px) {
  .xc-slider-three__title {
    font-size: 60px;
  }
}

.xc-slider-three__title span {
  font-weight: 500;
}

.xc-slider-three__btn {
  font-size: 18px;
  font-weight: 400;
  color: var(--swiftcart-white);
  text-transform: uppercase;
  padding: 13px 23px;
  display: inline-block;
  font-family: var(--swiftcart-heading-font);
  background-color: var(--swiftcart-black);
}

.xc-slider-three__btn:hover {
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-base);
}

.xc-slider-three__carousel-thumb {
  position: absolute;
  bottom: 340px;
  max-width: 300px;
  background-color: var(--swiftcart-white);
  padding: 20px 30px;
  right: 0;
}

@media (min-width: 768px) {
  .xc-slider-three__carousel-thumb {
    max-width: 400px;
  }
}

@media (min-width: 992px) {
  .xc-slider-three__carousel-thumb {
    bottom: 0;
    max-width: 400px;
  }
}

@media (min-width: 1200px) {
  .xc-slider-three__carousel-thumb {
    right: 100px;
    max-width: 600px;
    padding: 30px 60px;
  }
}

.xc-slider-three__thumb img {
  background-color: var(--swiftcart-gray);
  border-radius: 50%;
}

/*----------------------------------------
6.4 Banner
----------------------------------------*/
.xc-banner-one__cat {
  background-color: var(--swiftcart-base);
  padding: 20px 15px;
  border-radius: 10px;
  margin-right: -55px;
  border: 1px solid var(--swiftcart-border-color);
}

.xc-banner-one__cat ul {
  margin-bottom: 0;
  padding-left: 0;
}

.xc-banner-one__cat ul li {
  list-style: none;
}

.xc-banner-one__cat ul li a {
  display: block;
  padding: 6px 10px;
  font-weight: 500;
  color: var(--swiftcart-white);
  position: relative;
  z-index: 1;
  transition: 0.3s;
}

.xc-banner-one__cat ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  z-index: -1;
  transition: 0.3s;
  background-color: #E5F1FF;
  border-radius: 6.05px;
}

.xc-banner-one__cat ul li a:hover {
  color: var(--swiftcart-black);
}

.xc-banner-one__cat ul li a:hover::before {
  width: 100%;
}

.xc-banner-two__item {
  position: relative;
  background: radial-gradient(206.03% 76.54% at 96.3% 9%, #6CDDFF 0%, #58C4E4 100%);
  overflow: hidden;
  padding: 30px;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .xc-banner-two__item {
    padding: 30px 50px;
  }
}

.xc-banner-two__item.item-2 {
  background: radial-gradient(464.18% 133.85% at 0% 100%, #FBD103 70.66%, #FFE14B 100%);
}

.xc-banner-two__item.item-2 .xc-banner-two__title {
  color: #004743;
}

.xc-banner-two__item.item-2 .xc-banner-two__info span {
  color: #004743;
}

.xc-banner-two__img {
  margin-top: 30px;
}

.xc-banner-two__img img {
  width: 100%;
}

@media (min-width: 992px) {
  .xc-banner-two__img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin-top: 0;
  }

  .xc-banner-two__img img {
    width: auto;
  }
}

.xc-banner-two__title {
  font-size: 45px;
  font-weight: 700;
  color: var(--swiftcart-white);
}

.xc-banner-two__title br {
  display: none;
}

@media (min-width: 1200px) {
  .xc-banner-two__title br {
    display: block;
  }
}

.xc-banner-two__info {
  color: var(--swiftcart-white);
  font-size: 25px;
  font-weight: 700;
  font-variant: --swiftcart-space;
}

.xc-banner-two__info span {
  color: #FBD103;
}

.xc-header-two-banner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 992px) {
  .xc-header-two-banner {
    flex-direction: row;
  }
}

@media (min-width: 1400px) {
  .xc-header-two-banner {
    flex-direction: column;
  }
}

.xc-header-two-banner-two,
.xc-header-two-banner-one {
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
}

.xc-header-two-banner-two .swiftcart-btn,
.xc-header-two-banner-one .swiftcart-btn {
  padding: 10px 25px;
}

.xc-header-two-banner-two__item,
.xc-header-two-banner-one__item {
  padding: 30px;
  display: flex;
  border-radius: 6px;
  position: relative;
  gap: 40px;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 576px) {

  .xc-header-two-banner-two__item,
  .xc-header-two-banner-one__item {
    flex-direction: row;
  }
}

@media (min-width: 768px) {

  .xc-header-two-banner-two__item,
  .xc-header-two-banner-one__item {
    padding: 40px;
  }
}

.xc-header-two-banner-two__item span,
.xc-header-two-banner-one__item span {
  color: #EBC80C;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}

.xc-header-two-banner-two__offer,
.xc-header-two-banner-one__offer {
  position: absolute;
  bottom: 24px;
  right: 24px;
  color: var(--swiftcart-black) !important;
  background-color: #EBC80C;
  padding: 8px 16px;
  font-weight: 600;
  display: inline-block;
  border-radius: 2px;
}

@media (min-width: 768px) {

  .xc-header-two-banner-two__offer,
  .xc-header-two-banner-one__offer {
    bottom: auto;
    top: 24px;
  }
}

.xc-header-two-banner-two__title,
.xc-header-two-banner-one__title {
  font-size: 24px;
  color: var(--swiftcart-white);
  margin-bottom: 15px;
}

.xc-header-two-banner-one__right img {
  position: relative;
}

@media (min-width: 768px) {
  .xc-header-two-banner-one__right img {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

.xc-header-two-banner-one__price {
  font-size: 18px;
  color: var(--swiftcart-base);
  display: block;
  margin-bottom: 10px;
}

.xc-banner-three__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px;
  padding-top: 35px;
  position: relative;
  border-radius: 10px;
  flex-direction: column-reverse;
}

@media (min-width: 768px) {
  .xc-banner-three__item {
    padding: 30px;
  }
}

@media (min-width: 992px) {
  .xc-banner-three__item {
    flex-direction: inherit;
    align-items: center;
  }
}

@media (min-width: 1400px) {
  .xc-banner-three__item {
    padding: 0 44px;
    padding-top: 35px;
  }
}

.xc-banner-three__item.item-1 .xc-banner-three__title {
  color: var(--swiftcart-black);
}

.xc-banner-three__item.item-1 .xc-banner-three__info {
  color: #475156;
}

.xc-banner-three__item.item-1 .xc-banner-three__subtitle {
  background-color: #2DA5F3;
  color: var(--swiftcart-white);
}

.xc-banner-three__subtitle {
  display: inline-block;
  padding: 2px 16px;
  background-color: #EFD33D;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--swiftcart-black);
  margin-bottom: 10px;
}

.xc-banner-three__title {
  color: var(--swiftcart-white);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
}

.xc-banner-three__title br {
  display: none;
}

@media (min-width: 1200px) {
  .xc-banner-three__title br {
    display: block;
  }
}

.xc-banner-three__info {
  color: #ADB7BC;
  margin-bottom: 30px;
}

.xc-banner-three__btn {
  margin-bottom: 25px;
}

.xc-banner-three__right {
  flex-shrink: 0;
}

.xc-banner-three__img {
  margin-bottom: 30px;
  display: inline-block;
  position: relative;
}

.xc-banner-three__img img {
  width: 100%;
}

@media (min-width: 992px) {
  .xc-banner-three__img {
    position: absolute;
    bottom: 0;
    right: 0px;
    margin-left: 0px;
    margin-bottom: 0px;
  }
}

@media (min-width: 992px) {
  .xc-banner-three__img-center {
    bottom: unset;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
}

@media (min-width: 1400px) {
  .xc-banner-three__img-center {
    bottom: unset;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
  }
}

.xc-banner-three__price {
  position: absolute;
  right: 20px;
  top: 0;
  font-size: 20px;
  font-weight: 600;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-base);
}

.xc-banner-four {
  padding: 55px 25px;
  background-color: #124261;
  text-align: center;
  border-radius: 10px;
}

.xc-banner-four__title {
  color: var(--swiftcart-white);
  font-size: 28px;
  font-weight: 600;
}

.xc-banner-four__info {
  color: var(--swiftcart-white);
}

.xc-banner-four__price {
  color: var(--swiftcart-white);
  margin-bottom: 30px;
}

.xc-banner-four__price span {
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 3px;
  display: inline-block;
  color: var(--swiftcart-black);
  background-color: var(--swiftcart-white);
}

.xc-banner-five {
  background-color: var(--swiftcart-black);
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
}

@media (min-width: 1400px) {
  .xc-banner-five.xc-banner-five2 {
    padding: 40px 40px;
  }
}

@media (min-width: 1400px) {
  .xc-banner-five {
    padding: 35px 30px;
  }
}

.xc-banner-five__subtitle {
  display: inline-block;
  color: var(--swiftcart-white);
  font-size: 14px;
  font-weight: 20px;
  margin-bottom: 10px;
}

.xc-banner-five__title {
  color: var(--swiftcart-white);
}

.xc-banner-five__info {
  color: #FBD103;
  font-size: 16px;
}

.xc-banner-five__time {
  color: var(--swiftcart-white);
}

.xc-banner-five__img {
  margin-bottom: 10px;
}

.xc-banner-five__countdown-inner {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.xc-banner-five__countdown-inner ul {
  padding: 4px 12px;
  display: flex;
  gap: 10px;
  list-style: none;
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-base);
  font-family: var(--swiftcart-heading-font);
  border-radius: 2px;
}

.xc-banner-six__wrapper {
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  gap: 100px;
  align-items: center;
  flex-wrap: wrap;
}

.xc-banner-six__title {
  font-size: 27px;
  font-weight: 600;
  color: var(--swiftcart-white);
}

.xc-banner-six__info {
  color: rgba(var(--swiftcart-white-rgb), 0.7);
  font-size: 18px;
  font-family: var(--swiftcart-heading-font);
  margin-bottom: 0;
}

.xc-banner-six__img-1 {
  position: absolute;
  right: 10px;
  bottom: 0;
}

@media (min-width: 992px) {
  .xc-banner-six__img-1 {
    right: 50px;
  }
}

.xc-banner-six__img-2 {
  position: absolute;
  bottom: 0;
  right: 100px;
  z-index: -1;
}

@media (min-width: 992px) {
  .xc-banner-six__img-2 {
    right: 130px;
  }
}

.xc-banner-seven .xc-banner-three__item {
  padding: 60px 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (min-width: 992px) {
  .xc-banner-seven .xc-banner-three__item {
    padding: 60px 110px;
  }
}

.xc-banner-seven .xc-banner-three__item::before {
  position: absolute;
  content: "";
  width: 112px;
  height: 136px;
  left: 0;
  bottom: 0;
  background-color: var(--swiftcart-base);
  clip-path: polygon(0% 0%, 0% 100%, 100% 100%);
}

.xc-banner-seven .xc-banner-three__item::after {
  position: absolute;
  content: "";
  width: 518px;
  height: 518px;
  right: -50px;
  top: 20px;
  border-radius: 50%;
  background-color: #1C1C1C;
  z-index: -1;
}

@media (min-width: 992px) {
  .xc-banner-seven .xc-banner-three__title {
    font-size: 60px;
  }
}

@media (min-width: 992px) {
  .xc-banner-seven .xc-banner-three__info {
    font-size: 24px;
    line-height: 1.4;
  }
}

.xc-banner-seven .xc-banner-three__subtitle {
  background-color: #FA8232;
  color: var(--swiftcart-white);
}

.xc-banner-seven .xc-banner-three__btn {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .xc-banner-seven .xc-banner-three__img {
    position: absolute;
    bottom: 0;
    right: 50px;
    margin-left: 0px;
    margin-bottom: 0px;
  }
}

.xc-banner-eight__item {
  position: relative;
  transition: 0.3s;
}

.xc-banner-eight__item:hover .xc-banner-eight__img img {
  transform: scale(1.05);
}

.xc-banner-eight__item:hover .xc-banner-eight__img::before {
  inset: 25px;
  opacity: 1;
}

.xc-banner-eight__item:hover .xc-banner-eight__img::after {
  transform: scale(1);
}

.xc-banner-eight__img {
  overflow: hidden;
}

.xc-banner-eight__img img {
  transition: 0.3s;
}

.xc-banner-eight__img::before {
  content: "";
  border: 1px solid var(--swiftcart-white);
  position: absolute;
  inset: 100px;
  display: inline-block;
  z-index: 1;
  opacity: 0;
  transition: 0.3s;
}

.xc-banner-eight__img::after {
  content: "";
  position: absolute;
  inset: 0;
  display: inline-block;
  background-color: rgba(51, 51, 51, 0.38);
  transform: scale(0);
  transition: 0.2s;
}

.xc-banner-eight__content {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 20px;
  background-color: var(--swiftcart-white);
  z-index: 2;
}

@media (min-width: 768px) {
  .xc-banner-eight__content {
    min-width: 210px;
  }
}

.xc-banner-eight__title {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.xc-banner-eight__subtitle {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--swiftcart-heading-font);
}

.xc-banner-eight-lg {
  display: flex;
  align-items: center;
  background-color: #EAEAEA;
  padding: 40px;
  padding-bottom: 0;
  padding-top: 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.xc-banner-eight-lg::before {
  content: "";
  width: 293px;
  height: 268px;
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  border-radius: 0px 0px 0px 131.5px;
  background-color: var(--swiftcart-white);
  z-index: -1;
}

.xc-banner-eight-lg::after {
  content: "";
  width: 103px;
  height: 103px;
  position: absolute;
  left: -35px;
  bottom: -35px;
  display: inline-block;
  border-radius: 50%;
  border: 13px solid var(--swiftcart-white);
  z-index: -1;
}

.xc-banner-eight-lg__content {
  flex-shrink: 0;
}

.xc-banner-eight-lg__subtitle {
  color: var(--swiftcart-black);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--swiftcart-heading-font);
  display: inline-block;
  margin-bottom: 5px;
}

.xc-banner-eight-lg__title {
  font-weight: 500;
  font-size: 28px;
  line-height: 40px;
  text-transform: uppercase;
}

.xc-banner-eight-lg__btn {
  margin-top: 40px;
}

.xc-banner-nine__box {
  position: relative;
}

.xc-banner-nine__content {
  position: absolute;
  right: 0;
  bottom: 10px;
  text-align: center;
  transform: scale(0.7);
}

@media (min-width: 768px) {
  .xc-banner-nine__content {
    bottom: 80px;
  }
}

.xc-banner-nine__subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: var(--swiftcart-heading-font);
}

.xc-banner-nine__title {
  font-size: 63px;
  font-weight: 300;
  text-transform: uppercase;
}

.xc-banner-nine__btn {
  margin-top: 30px;
}

.xc-banner-nine__btn .swiftcart-btn-black {
  text-transform: uppercase;
  padding: 8px 20px;
}

.xc-banner-nine__box-2 {
  position: relative;
}

.xc-banner-nine__box-2::before {
  content: "";
  position: absolute;
  inset: 0;
  display: inline-block;
  background-color: #333;
  opacity: 0.22;
}

.xc-banner-nine__box-2 .xc-banner-nine__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  bottom: unset;
  right: unset;
  inset: 0;
}

.xc-banner-nine__box-2 .xc-banner-nine__subtitle {
  color: var(--swiftcart-white);
  font-weight: 600;
}

.xc-banner-nine__box-2 .xc-banner-nine__title {
  color: var(--swiftcart-black);
  background-color: var(--swiftcart-white);
  font-weight: 500;
  padding-left: 30px;
  font-size: 30px;
}

@media (min-width: 992px) {
  .xc-banner-nine__box-2 .xc-banner-nine__title {
    font-size: 40px;
  }
}

.xc-banner-nine__box-2 .xc-banner-nine__title span {
  color: var(--swiftcart-white);
  background-color: #333;
  display: inline-block;
  padding: 15px 30px;
  margin-left: 30px;
}

/*----------------------------------------
6.5 Feature
----------------------------------------*/
.xc-feature-one {
  background-size: cover;
  background-position: center;
}

.xc-feature-one__item {
  padding: 18px;
  display: flex;
  gap: 15px;
  background-color: var(--swiftcart-white);
  height: 100%;
  border-radius: 10px;
}

.xc-feature-one__icon {
  font-size: 40px;
  color: var(--swiftcart-black);
}

.xc-feature-one__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--swiftcart-black);
  text-transform: uppercase;
  margin-bottom: 0;
}

.xc-feature-one__content p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 18px;
  margin-top: 4px;
}

@media (min-width: 1400px) {
  .xc-feature-one__content p {
    font-size: 16px;
  }
}

.xc-feature-one__title .xc-sec-heading__title {
  color: var(--swiftcart-white);
}

.xc-feature-one__title .xc-sec-heading__summary {
  color: var(--swiftcart-white);
  opacity: 0.8;
}

.xc-feature-two__item {
  padding: 40px 30px;
  text-align: center;
  border-radius: 15px;
  border: 1px solid var(--swiftcart-border-color);
  background-color: var(--swiftcart-white);
}

.xc-feature-two__icon {
  width: 70px;
  height: 70px;
  font-size: 25px;
  border-radius: 50%;
  margin-bottom: 25px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-base);
}

.xc-feature-two__icon span,
.xc-feature-two__icon i {
  line-height: 1;
}

.xc-feature-two__title {
  font-size: 17px;
  margin-bottom: 20px;
}

@media (min-width: 1400px) {
  .xc-feature-two__title {
    font-size: 20px;
  }
}

.xc-feature-two__info {
  margin-bottom: 0;
}

.xc-product-feature__item {
  display: flex;
  gap: 20px;
}

.xc-product-feature__item+.xc-product-feature__item {
  margin-top: 60px;
}

.xc-product-feature__icon {
  width: 70px;
  height: 70px;
  font-size: 25px;
  border-radius: 50%;
  margin-bottom: 25px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  flex-shrink: 0;
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-base);
}

.xc-product-feature__icon span,
.xc-product-feature__icon i {
  line-height: 1;
}

.xc-product-feature__title {
  font-size: 20px;
  margin-bottom: 20px;
}

.xc-landing-feature__img {
  position: relative;
}

@media (min-width: 992px) {
  .xc-landing-feature__img {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 280px;
    z-index: 1;
  }
}

.xc-landing-feature__img img {
  width: 100%;
}

@media (min-width: 768px) {
  .xc-landing-feature__img img {
    width: auto;
  }
}

.xc-landing-feature__shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  display: none;
}

@media (min-width: 992px) {
  .xc-landing-feature__shape {
    display: inline-block;
  }
}

.xc-landing-feature__shape.animated {
  animation: xcXoomIn 3s normal;
}

/*----------------------------------------
6.6 Price
----------------------------------------*/
.xc-price-one {
  position: relative;
  z-index: 1;
}

.xc-price-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 550px;
  z-index: -1;
  background-size: cover;
  background-position: center;
}

.xc-price-one__bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--swiftcart-base);
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  opacity: 0.8;
  z-index: 1;
}

.xc-price-one__section {
  background-position: bottom;
}

.xc-price-one__section.style-2 {
  padding-top: 1px;
}

.xc-price-one__section.style-2 .xc-section__subtitle {
  border: 1px solid var(--swiftcart-base);
  padding-left: 30px;
  padding-right: 30px;
  display: inline-block;
  padding-top: 3px;
  padding-bottom: 3px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.xc-price-one__tab-nav {
  margin: 0 auto;
  margin-bottom: 75px;
  position: relative;
}

.xc-price-one__tab-offer {
  position: absolute;
  right: -15%;
  top: 5px;
  text-align: center;
  -moz-animation: xcswing 1s ease-in-out 1s forwards infinite alternate;
  -webkit-animation: xcswing 1s ease-in-out 1s forwards infinite alternate;
  animation: xcswing 1s ease-in-out 1s forwards infinite alternate;
  transform-origin: center center;
}

.xc-price-one__tab-offer span {
  display: block;
  padding-left: 50px;
  font-weight: 700;
  position: relative;
  top: -15px;
  color: var(--swiftcart-base);
}

.xc-price-one__item {
  background-color: var(--swiftcart-white);
  box-shadow: --swiftcart-box-shadow;
  border-radius: 10px;
  padding-left: 35px;
  padding-right: 35px;
  padding-top: 40px;
  padding-bottom: 50px;
  margin-bottom: 30px;
  border: 1px solid var(--swiftcart-border-color);
  transition: 0.3s;
}

.xc-price-one__item.featured {
  position: relative;
  padding-top: 80px;
}

@media (min-width: 992px) {
  .xc-price-one__item.featured {
    margin-top: -40px;
  }
}

.xc-price-one__item.featured .xc-price-one__banner {
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
}

.xc-price-one__item.featured .xc-price-one__banner p {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-family: var(--swiftcart-heading-font);
  padding-top: 13px;
  padding-bottom: 13px;
  text-align: center;
  background-color: var(--swiftcart-base);
  text-transform: uppercase;
  color: var(--swiftcart-white);
  font-weight: 700;
  width: 100%;
}

.xc-price-one__item.featured .xc-price-one__btn a {
  background-color: var(--swiftcart-base);
  color: var(--swiftcart-white);
}

.xc-price-one__item.featured .xc-price-one__btn a:hover {
  opacity: 0.9;
}

.xc-price-one__item:hover {
  border-color: var(--swiftcart-base);
}

.xc-price-one__banner {
  display: none;
}

.xc-price-one__head {
  padding-bottom: 35px;
  margin-bottom: 25px;
  border-bottom: 1px solid #CDD3E0;
}

.xc-price-one__package {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--xc-grey-1);
}

.xc-price-one__price {
  font-weight: 700;
  font-size: 60px;
  color: var(--swiftcart-black);
}

.xc-price-one__price span {
  font-weight: 400;
  font-size: 24px;
  color: var(--xc-grey-1);
}

.xc-price-one__list p {
  color: var(--swiftcart-black);
}

.xc-price-one__list i {
  color: var(--swiftcart-base);
  margin-right: 5px;
}

.xc-price-one__btn a {
  background-color: rgba(var(--swiftcart-base-rgb), 0.3);
  color: var(--swiftcart-base);
  width: 100%;
  display: block;
  text-align: center;
  padding-top: 13px;
  padding-bottom: 13px;
  border-radius: 5px;
  font-weight: 700;
  transition: 0.3s;
}

.xc-price-one__btn a:hover {
  color: var(--swiftcart-white);
  background-color: rgba(var(--swiftcart-base-rgb), 1);
}

.xc-price-one__tab-wrapper {
  text-align: center;
}

.xc-price-one__tab-nav {
  padding: 8px;
  background-color: var(--xc-grey-11);
  border-radius: 10px;
  width: 356px;
}

.xc-price-one__tab-nav .nav-link {
  font-family: var(--xc-ff-inter);
  font-weight: 700;
  font-size: 16px;
  background-color: transparent;
  color: var(--swiftcart-black);
  padding: 14px 44px;
  border-radius: 100px;
  border: 0;
}

.xc-price-one__tab-nav .nav-link span {
  font-weight: 700;
  font-size: 16px;
  color: #F46A35;
  padding: 11px 44px;
  border-radius: 30px;
  background: rgba(244, 106, 53, 0.1);
  display: inline-block;
  line-height: 1;
  margin-left: 5px;
}

.xc-price-one__tab-nav .nav-link:first-child {
  padding-right: 20px;
}

.xc-price-one__tab-nav .nav-link.active {
  background-color: transparent;
  color: var(--swiftcart-white);
}

.xc-price-one__tab-nav .xc-price-tab-slide {
  position: relative;
  z-index: 1;
  background: var(--swiftcart-white);
  border-radius: 100px;
  display: inline-block;
  box-shadow: 0px 0px 250px rgba(78, 67, 250, 0.14);
}

.xc-price-one__tab-nav .xc-price-tab-slide:hover {
  cursor: pointer;
}

.xc-price-one__tab-nav .xc-price-tab-slide label:hover {
  cursor: pointer;
}

.xc-price-one__tab-nav .xc-price-tab-slide #price-tab-check {
  display: none;
}

.xc-price-one__tab-nav .xc-price-tab-slide #price-tab-check:checked+i {
  right: 111px;
  width: 150px;
}

.xc-price-one__tab-nav .xc-price-tab-slide i {
  position: absolute;
  top: 3px;
  bottom: 2px;
  right: 3px;
  width: 136px;
  display: inline-block;
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-black);
  border-radius: 100px;
  -webkit-transform: translate3d(0, 0);
  transform: translate3d(0, 0);
  -webkit-transition: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}

.xc-nav .nav-tabs {
  border: 0;
}

/*----------------------------------------
6.7 Offer
----------------------------------------*/
.xc-offer-one__wrap {
  border-radius: 10px;
  border: 1px solid var(--swiftcart-border-color);
  padding-top: 20px;
}

@media (min-width: 992px) {
  .xc-offer-one__wrap {
    padding-top: 0;
  }
}

.xc-offer-one__cats .col {
  border-left: 1px solid var(--swiftcart-border-color);
}

.xc-offer-one__cat {
  text-align: center;
  padding: 30px 0;
  transition: 0.3s;
}

.xc-offer-one__cat img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 25px;
  transition: 0.3s;
}

.xc-offer-one__cat:hover img {
  transform: scale(1.1);
}

.xc-offer-one__cat-title {
  font-size: 16px;
}

.xc-offer-one__cat-title a:hover {
  color: var(--swiftcart-secondary);
}

.xc-offer-one__cat-count {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  padding: 0px 15px;
  border-radius: 30px;
  font-family: var(--swiftcart-heading-font);
  color: var(--swiftcart-secondary);
  background-color: rgba(var(--swiftcart-secondary-rgb), 0.2);
}

.xc-offer-one__title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.29px;
  margin-bottom: 0;
}

.xc-offer-one__timer {
  padding: 0 16px;
}

.xc-offer-one__countdown-inner ul {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.xc-offer-one__countdown-inner ul li {
  display: inline-block;
  list-style: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-black);
  border-radius: 5px;
  padding: 12px 15px;
  border-radius: 5.77px;
}

.xc-offer-one__countdown-inner ul li span {
  display: block;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
  text-transform: capitalize;
}

@media (min-width: 1200px) {
  .xc-sale-one__banner {
    margin-right: 40px;
  }
}

@media (min-width: 1400px) {
  .xc-sale-one__banner {
    margin-right: 0;
  }
}

.xc-sale-one__banner img {
  border-radius: 12px;
  width: 100%;
}

@media (min-width: 1200px) {
  .xc-sale-one__banner img {
    width: auto;
  }
}

.xc-ads-countdown {
  position: relative;
  z-index: 1;
}

.xc-ads-countdown__shape-2 {
  position: absolute;
  top: 30%;
  right: 0;
  z-index: -1;
}

.xc-ads-countdown__img {
  position: relative;
}

.xc-ads-countdown__shape {
  position: absolute;
  left: -60px;
  bottom: 0;
  z-index: -1;
}

.xc-ads-countdown__content {
  padding: 30px 0;
}

@media (min-width: 768px) {
  .xc-ads-countdown__content {
    padding: 0;
  }
}

.xc-ads-countdown__title {
  font-size: 60px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.xc-ads-countdown__title u {
  font-weight: 300;
  text-decoration: none;
  border-bottom: 2px solid #333;
}

.xc-ads-countdown__subtitle {
  color: var(--swiftcart-black);
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 7.3px;
  margin-bottom: 10px;
  display: inline-block;
  font-family: var(--swiftcart-heading-font);
}

@media (min-width: 768px) {
  .xc-ads-countdown__subtitle {
    font-size: 20px;
  }
}

.xc-ads-countdown__info {
  font-size: 16px;
}

.xc-ads-countdown__count-inner {
  margin-top: 60px;
  margin-bottom: 60px;
}

.xc-ads-countdown__count-inner ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.xc-ads-countdown__count-inner ul li {
  font-family: var(--swiftcart-heading-font);
  font-size: 16px;
  font-style: normal;
  line-height: 1.2;
  padding: 17px;
  font-weight: 500;
  min-width: 94.402px;
  text-align: center;
  text-transform: uppercase;
  color: var(--swiftcart-black);
  border: 1px solid var(--swiftcart-black);
}

.xc-ads-countdown__count-inner ul li span {
  display: block;
  font-size: 45px;
  font-weight: 300;
}

/*----------------------------------------
6.8 Best Details
----------------------------------------*/
.xc-best-deal__banner {
  padding: 40px 0;
  text-align: center;
  border-radius: 10px;
}

@media (min-width: 1400px) {
  .xc-best-deal__banner {
    padding: 50px 0;
    margin-right: 50px;
  }
}

.xc-best-deal__banner-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--swiftcart-white);
  line-height: 1.6;
  margin-bottom: 0;
}

.xc-best-deal__banner-title span {
  font-size: 32px;
  font-weight: 600;
  color: #FBD103;
  display: block;
}

.xc-best-deal__banner img {
  padding: 45px 0;
}

@media (min-width: 1400px) {
  .xc-best-deal__banner img {
    padding: 50px 0;
  }
}

.xc-best-deal__filter-btn {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
  gap: 10px;
}

@media (min-width: 768px) {
  .xc-best-deal__filter-btn {
    gap: 35px;
  }
}

.xc-best-deal__filter-btn li {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  cursor: pointer;
}

.xc-best-deal__filter-btn li.active-btn {
  color: var(--swiftcart-black);
}

.xc-best-deal__filter-box-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .xc-best-deal__filter-box-wrap {
    margin-bottom: 0;
  }
}

.xc-best-deal__btn {
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-black);
  display: inline-block;
  padding: 2px 11px;
  text-transform: capitalize;
}

.xc-best-deal__btn:hover {
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-secondary);
}

.xc-best-deal__header-wraper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .xc-best-deal__header-wraper {
    gap: 40px;
  }
}

.xc-best-deal__header-wraper p {
  color: var(--swiftcart-black);
  font-family: var(--swiftcart-heading-font);
}

.xc-best-deal__countdown-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.xc-best-deal__countdown-inner ul {
  padding: 4px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-base);
  font-family: var(--swiftcart-heading-font);
  border-radius: 2px;
}

.xc-best-deal__banner_modify {
  margin-right: 0;
}

.xc-best-deal__filter-box.has-border .xc-best-deal__filter-btn {
  gap: 5px;
}

.xc-best-deal__filter-box.has-border .tab-btn {
  color: var(--swiftcart-black);
  border: 1px solid transparent;
  padding: 2px 15px;
}

.xc-best-deal__filter-box.has-border .tab-btn.active-btn {
  border: 1px solid var(--swiftcart-black);
}

.xc-best-deal__filter-box.has-border .xc-best-deal__filter-box-wrap {
  position: relative;
}

.xc-best-deal__filter-box.has-border .xc-best-deal__filter-box-wrap::before {
  display: none;
  content: "";
  width: 50%;
  height: 1px;
  position: absolute;
  top: 15px;
  background-color: var(--swiftcart-black);
  right: 0;
}

@media (min-width: 992px) {
  .xc-best-deal__filter-box.has-border .xc-best-deal__filter-box-wrap::before {
    display: inline-block;
    width: 40%;
  }
}

@media (min-width: 1200px) {
  .xc-best-deal__filter-box.has-border .xc-best-deal__filter-box-wrap::before {
    width: 50%;
  }
}

/*----------------------------------------
6.9 Seller
----------------------------------------*/
.xc-seller-one__item {
  text-align: center;
  padding: 60px 10px;
}

.xc-seller-one__content {
  margin-bottom: 60px;
}

.xc-seller-one__content img {
  margin-bottom: 25px;
}

.xc-seller-one__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--swiftcart-black);
  margin-bottom: 10px;
}

.xc-seller-one__title a:hover {
  color: var(--swiftcart-secondary);
}

.xc-seller-one__ratting {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.xc-seller-one__ratting i {
  color: #FA8232;
  font-size: 16px;
}

.xc-seller-one__wrapper {
  border: 1px solid var(--swiftcart-border-color);
  border-radius: 10px;
  overflow: hidden;
}

.xc-seller-one__wrapper .row [class*=col] {
  border-right: 1px solid var(--swiftcart-border-color);
  border-bottom: 1px solid var(--swiftcart-border-color);
  margin-bottom: -2px;
  margin-left: 1px;
  margin-right: -1px;
}

.xc-seller-one__btn {
  color: var(--swiftcart-black);
  font-size: 18px;
  font-weight: 500;
}

.xc-seller-one__btn:hover {
  color: var(--swiftcart-base);
}

.xc-seller-one__btn i {
  position: relative;
  top: 2px;
}

.xc-seller-two__item {
  text-align: center;
  padding: 60px 10px;
  background-color: var(--swiftcart-white);
}

.xc-seller-two__content {
  margin-bottom: 60px;
}

.xc-seller-two__content img {
  margin-bottom: 25px;
}

.xc-seller-two__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--swiftcart-black);
  margin-bottom: 10px;
}

.xc-seller-two__title a:hover {
  color: var(--swiftcart-secondary);
}

.xc-seller-two__ratting {
  font-size: 14px;
}

.xc-seller-two__ratting i {
  color: #FA8232;
  font-size: 16px;
}

.xc-seller-two__btn {
  font-size: 16px;
  font-weight: 500;
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-base);
  display: inline-block;
  padding: 8px 25px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: 0.3s;
}

.xc-seller-two__btn:hover {
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-secondary);
}

.xc-seller-two__btn i {
  position: relative;
  top: 2px;
}

/*----------------------------------------
6.10 Brand
----------------------------------------*/
.xc-brand-one__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  min-height: 200px;
  padding-top: 50px;
  padding-bottom: 40px;
  text-align: center;
  border: 1px solid var(--swiftcart-border-color);
  border-radius: 10px;
  transition: 0.3s;
}

.xc-brand-one__item:hover {
  border-color: var(--swiftcart-base);
}

.xc-brand-one__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--swiftcart-text);
}

.xc-brand-one__title a:hover {
  color: var(--swiftcart-secondary);
}

.xc-brand-one img {
  margin-bottom: 20px;
}

div.xc-ads-one__img img {
  border-radius: 10px;
}

/*----------------------------------------
6.11 Categroy
----------------------------------------*/
.xc-category-one__item {
  text-align: center;
}

.xc-category-one__item:hover img {
  transform: scale(1.05);
}

.xc-category-one__img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background-color: #E3E3EC;
  margin-bottom: 10px;
  overflow: hidden;
}

.xc-category-one__title {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.xc-category-one__title a:hover {
  color: var(--swiftcart-base);
}

.xc-category-one .owl-carousel .owl-item img {
  width: auto;
  transition: 0.3s;
}

.xc-cats-two__wrapper {
  border: 1px solid var(--swiftcart-border-color);
  border-radius: 0 10px 10px 0;
  overflow: hidden;
  background-color: var(--swiftcart-white);
}

.xc-cats-two__wrapper .row [class*=col-] {
  border-right: 1px solid var(--swiftcart-border-color);
  border-bottom: 1px solid var(--swiftcart-border-color);
  margin-bottom: -2px;
  margin-left: 1px;
  margin-right: -1px;
}

.xc-cats-two__ads img {
  border-radius: 5px 0 0 5px;
}

.xc-cats-two__item {
  position: relative;
  padding-top: 17px;
  padding-bottom: 46px;
  padding-left: 17px;
  padding-right: 17px;
}

.xc-cats-two__title {
  font-size: 18px;
  font-weight: 500;
  color: var(--swiftcart-black);
}

.xc-cats-two__info {
  font-size: 15px;
  font-family: var(--swiftcart-heading-font);
  line-height: 1.4;
}

.xc-cats-two__img {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

/*----------------------------------------
6.12 Testimonial
----------------------------------------*/
.xc-testimonial-one__item {
  padding: 40px;
  position: relative;
  background-color: var(--swiftcart-white);
}

.xc-testimonial-one__head {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

.xc-testimonial-one__ratting {
  color: var(--swiftcart-black);
}

.xc-testimonial-one__thumb {
  border-radius: 50%;
  overflow: hidden;
}

.xc-testimonial-one__review {
  font-size: 16px;
}

.xc-testimonial-one__name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
  text-transform: uppercase;
  font-family: var(--swiftcard-heading-font);
}

.xc-testimonial-one__bio {
  margin-bottom: 0;
  font-size: 14px;
}

.xc-testimonial-one__quote {
  bottom: 40px;
  right: 40px;
  opacity: 0.1;
  position: absolute;
}

.xc-testimonial-two__item {
  padding: 40px;
  padding-top: 70px;
  margin-top: 33px;
  position: relative;
  background-color: var(--swiftcart-white);
  text-align: center;
  border-radius: 8px;
  border: 1px dashed rgba(0, 0, 0, 0.1);
}

.xc-testimonial-two__head {
  margin-bottom: 15px;
}

.xc-testimonial-two__ratting {
  color: #FFC107;
}

.xc-testimonial-two__thumb {
  position: absolute;
  left: 50%;
  top: -33px;
  transform: translateX(-50%);
  display: inline-block;
  border: 5px solid var(--swiftcart-base);
  border-radius: 50%;
  overflow: hidden;
}

.xc-testimonial-two .owl-carousel .owl-item img {
  width: 66px;
}

.xc-testimonial-two__review {
  font-size: 16px;
}

.xc-testimonial-two__name {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 5px;
  text-transform: capitalize;
  font-family: var(--swiftcard-heading-font);
}

.xc-testimonial-two__bio {
  margin-bottom: 5px;
  font-size: 16px;
}

.xc-testimonial-two__quote {
  bottom: 40px;
  right: 40px;
  opacity: 0.1;
  position: absolute;
}

.xc-testimonial-three__carousel.owl-carousel .owl-item img {
  width: 126px;
  display: inline-block;
  border-radius: 50%;
  margin-bottom: 15px;
}

.xc-testimonial-three__carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.xc-testimonial-three__carousel .owl-dots button {
  width: 24px;
  height: 10px;
  background-color: #063A7A;
  border-radius: 30px;
}

.xc-testimonial-three__carousel .owl-dots button.active {
  background-color: var(--swiftcart-base);
  transform: scale(2);
}

.xc-testimonial-three__img {
  position: relative;
  display: inline-block;
}

.xc-testimonial-three__img span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  display: inline-block;
  transform: translateX(-50%);
  background-color: var(--swiftcart-white);
  font-size: 30px;
  color: var(--swiftcart-base);
}

.xc-testimonial-three__item {
  text-align: center;
}

.xc-testimonial-three__name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
}

.xc-testimonial-three__bio {
  margin-bottom: 25px;
  display: inline-block;
}

/*----------------------------------------
6.13 Newsleter
----------------------------------------*/
.xc-newsletter-one__subtitle {
  font-size: 14px;
  font-weight: 500;
  line-height: 36.5%;
  margin-bottom: 10px;
  letter-spacing: 7.3px;
  text-transform: uppercase;
  color: var(--swiftcart-black);
}

@media (min-width: 768px) {
  .xc-newsletter-one__subtitle {
    font-size: 20px;
  }
}

.xc-newsletter-one__title {
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 60.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

@media (min-width: 768px) {
  .xc-newsletter-one__title {
    font-size: 40px;
  }
}

.xc-newsletter-one__title span {
  font-weight: 300;
  text-decoration: underline;
}

.xc-newsletter-one__info {
  font-size: 16px;
  font-weight: 400;
}

.xc-newsletter-one__form {
  margin-top: 60px;
}

.xc-newsletter-one__form form {
  position: relative;
  max-width: 730px;
}

.xc-newsletter-one__form input {
  height: 66px;
  padding-right: 250px;
  text-transform: capitalize;
  background-color: var(--swiftcart-white);
}

.xc-newsletter-one__form button {
  right: 0;
  top: 0;
  height: 66px;
  padding-left: 36px;
  padding-right: 36px;
  text-transform: uppercase;
  position: absolute;
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-black);
}

.xc-newsletter-one__form button:hover {
  background-color: var(--swiftcart-base);
}

.xc-newsletter-form.xc-has-overlay {
  position: relative;
  z-index: 1;
}

.xc-newsletter-form.xc-has-overlay::before {
  position: absolute;
  content: "";
  inset: 0;
  display: block;
  background-color: rgba(var(--swiftcart-base-rgb), 0.87);
  z-index: -1;
}

.xc-newsletter-form__two.xc-has-overlay::before {
  position: absolute;
  content: "";
  inset: 0;
  display: block;
  background-color: #2B2F33;
  z-index: -1;
}

.xc-newsletter-form__main {
  position: relative;
  display: flex;
}

.xc-newsletter-form__main input {
  background-color: var(--swiftcart-white);
  text-transform: capitalize;
}

.xc-newsletter-form__main button {
  flex-shrink: 0;
  background-color: var(--swiftcart-black);
  color: var(--swiftcart-white);
  padding-left: 30px;
  padding-right: 30px;
}

@media (min-width: 992px) {
  .xc-newsletter-form__main button {
    padding-left: 70px;
    padding-right: 70px;
  }
}

.xc-newsletter-form__main button:hover {
  background-color: var(--swiftcart-secondary);
}

.xc-newsletter-form__title {
  color: var(--swiftcart-white);
  margin-bottom: 20px;
}

/*----------------------------------------
6.14 FAQ
----------------------------------------*/


.xc-faq-one__left {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 10px;
}

.xc-faq-one__search {
  position: relative;
  margin-bottom: 35px;
}

.xc-faq-one__search input {
  border-radius: 30px;
  padding-right: 80px;
  background-color: var(--swiftcart-white);
}

.xc-faq-one__search button {
  position: absolute;
  top: 17px;
  right: 30px;
  font-size: 26px;
  color: var(--swiftcart-base);
}

.xc-faq-one__form__title {
  font-size: 24px;
}

.xc-faq-one__form textarea,
.xc-faq-one__form input {
  background-color: transparent;
  border: 0;
  padding-left: 0;
  padding-top: 0;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--swiftcart-border-color);
}

.xc-faq-one__form textarea {
  height: 80px;
  resize: none;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .xc-faq-one__right {
    padding-left: 50px;
  }
}

.swiftcart-accordion-one .xc-accordion {
  background-color: var(--swiftcart-white);
  padding: 22px 25px;
  margin-bottom: 12px;
  border-radius: 7px;
}

.swiftcart-accordion-one .xc-accordion.active span {
  transform: rotate(90deg);
}

.swiftcart-accordion-one .xc-accordion-title {
  position: relative;
}

.swiftcart-accordion-one .xc-accordion-title span {
  color: var(--swiftcart-black);
  transition: 0.3s;
  position: absolute;
  right: 0;
  top: 0;
}

.swiftcart-accordion-one .xc-accordion-question {
  padding-right: 15px;
  font-size: 17px;
  cursor: pointer;
  margin-bottom: 0;
  font-weight: 500;
}

.swiftcart-accordion-one .xc-accordion-answer p {
  margin-bottom: 0;
  margin-top: 15px;
}

/*----------------------------------------
6.15 Contact
----------------------------------------*/
.xc-contact-one__map iframe {
  width: 100%;
  height: 467px;
}

.xc-contact-one__info {
  margin-bottom: 30px;
}

.xc-contact-one__cta {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .xc-contact-one__cta {
    gap: 20px;
  }
}

.xc-contact-one__icon span {
  font-size: 30px;
  color: var(--swiftcart-base);
}

.xc-contact-one__ct a {
  font-size: 16px;
  font-weight: 500;
  color: var(--swiftcart-black);
}

.xc-contact-one__ct a:hover {
  color: var(--swiftcart-base);
}

.xc-contact-one__head {
  color: var(--swiftcart-grey);
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 400;
}

.xc-contact-main__title {
  font-size: 32px;
  text-transform: capitalize;
}

.xc-contact-main__info {
  font-size: 16px;
  margin-bottom: 30px;
}

.xc-contact-main__form textarea,
.xc-contact-main__form input {
  background-color: transparent;
  border: 1px solid var(--swiftcart-border-color);
}

.xc-contact-main__form textarea {
  padding-top: 15px;
  height: 110px;
}

/*----------------------------------------
6.16 404
----------------------------------------*/
.xc-error-one__content img {
  margin-bottom: 30px;
}

.xc-error-one__title {
  font-size: 30px;
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .xc-error-one__title {
    font-size: 50px;
  }
}

/*----------------------------------------
6.17 About
----------------------------------------*/
.xc-about-one__left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .xc-about-one__left {
    flex-wrap: nowrap;
  }
}

@media (min-width: 992px) {
  .xc-about-one__left {
    margin-bottom: 0;
  }
}

.xc-about-one__left img {
  width: 100%;
}

@media (min-width: 1400px) {
  .xc-about-one__left img {
    width: inherit;
  }
}

@media (min-width: 1400px) {
  .xc-about-one__img {
    flex-shrink: 0;
  }
}

.xc-about-one__img-2 {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 1400px) {
  .xc-about-one__right {
    padding-left: 65px;
  }
}

.xc-about-one__heading {
  margin-bottom: 25px;
}

.xc-about-one__subtitle {
  font-size: 16px;
  font-weight: 700;
  color: var(--swiftcart-black);
  letter-spacing: 6.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.xc-about-one__subtitle::after,
.xc-about-one__subtitle::before {
  position: absolute;
  left: 0;
  top: 9px;
  content: "";
  width: 3px;
  height: 11px;
  display: inline-block;
  background-color: var(--swiftcart-base);
}

.xc-about-one__subtitle::after {
  background-color: #063A7A;
  left: 6px;
}

.xc-about-one__title {
  font-size: 35px;
  line-height: 120%;
}

@media (min-width: 992px) {
  .xc-about-one__title {
    font-size: 40px;
  }
}

.xc-about-one__info {
  font-weight: 700;
}

.xc-about-one__checklist {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  margin-bottom: 30px;
}

.xc-about-one__checklist li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
}

.xc-about-one__checklist li i {
  color: var(--swiftcart-base);
  font-size: 21px;
  position: relative;
  top: 5px;
}

.xc-about-one__checklist li+li {
  margin-top: 15px;
}

/*----------------------------------------
6.18 Counter
----------------------------------------*/
.xc-counter-one__item {
  text-align: center;
}

.xc-counter-one__count {
  color: var(--swiftcart-white);
  font-size: 40px;
  font-weight: 500;
  font-family: var(--swiftcart-heading-font);
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .xc-counter-one__count {
    font-size: 80px;
  }
}

.xc-counter-one__title {
  font-size: 16px;
  letter-spacing: 6.8px;
  text-transform: uppercase;
  color: var(--swiftcart-white);
}

.xc-counter-two__icon {
  font-size: 30px;
  color: var(--swiftcart-white);
  margin-bottom: 20px;
}

.xc-counter-two__count {
  color: var(--swiftcart-base);
  font-size: 32px;
  font-weight: 500;
}

.xc-counter-two__title {
  color: var(--swiftcart-white);
  margin-bottom: 0;
}

/*----------------------------------------
6.19 Coosse
----------------------------------------*/
.xc-choose-one {
  background-color: #E7F2FF;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .xc-choose-one__right {
    padding-left: 40px;
  }
}

@media (min-width: 1400px) {
  .xc-choose-one__right {
    padding-left: 140px;
  }
}

@media (min-width: 768px) {
  .xc-choose-one__left {
    padding-right: 40px;
  }
}

.xc-choose-one__bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 75%;
  right: 0;
  z-index: -1;
}

@media (min-width: 992px) {
  .xc-choose-one__bg {
    width: 50%;
    height: 100%;
  }
}

.xc-choose-one__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  display: inline-block;
  background-color: rgba(var(--swiftcart-black-rgb), 0.9);
}

.xc-choose-one__info {
  margin-bottom: 40px;
}

.xc-choose-one__list-item {
  background-color: var(--swiftcart-white);
  font-size: 18px;
  font-weight: 600;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
}

@media (min-width: 1400px) {
  .xc-choose-one__list-item {
    font-size: 20px;
  }
}

.xc-choose-one__list-item i {
  font-size: 27px;
  color: var(--swiftcart-base);
}

/*----------------------------------------
6.20 Landing Page
----------------------------------------*/
.xc-landing-hero {
  background-color: #E7F2FF;
  padding-top: 120px;
  padding-bottom: 100px;
}

@media (min-width: 992px) {
  .xc-landing-hero {
    padding-top: 265px;
  }
}

.xc-landing-hero__subtitle {
  font-weight: 600;
  font-size: 18px;
  color: var(--swiftcart-black);
  font-family: var(--swiftcart-heading-font);
  position: relative;
  z-index: 1;
}

.xc-landing-hero__subtitle::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--swiftcart-base);
  border-radius: 30px;
  z-index: -1;
}

.xc-landing-hero__title {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .xc-landing-hero__title {
    font-size: 50px;
  }
}

@media (min-width: 992px) {
  .xc-landing-hero__title {
    font-size: 60px;
  }
}

.xc-landing-hero__info {
  margin-bottom: 30px;
}

.xc-landing-hero__btn {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.xc-landing-hero__thumb {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.xc-landing-hero__price {
  font-size: 18px;
  margin-bottom: 0;
}

.xc-landing-hero__right img {
  width: 100%;
}

@media (min-width: 576px) {
  .xc-landing-hero__right img {
    width: inherit;
  }
}

.xc-landing-hero__right.xc-bg-circle {
  position: relative;
  z-index: 1;
}

.xc-landing-hero__right.xc-bg-circle::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 313px;
  height: 313px;
  display: inline-block;
  background-color: var(--swiftcart-base);
  border-radius: 280px;
  z-index: -1;
}

@media (min-width: 992px) {
  .xc-landing-hero__right.xc-bg-circle::before {
    width: 413px;
    height: 485px;
  }
}

@media (min-width: 1200px) {
  .xc-landing-hero__right.xc-bg-circle::before {
    width: 513px;
    height: 585px;
  }
}

.xc-product-feature__img {
  background-color: var(--swiftcart-base);
  border-radius: 280.5px;
  margin: 30px 0;
}

@media (min-width: 992px) {
  .xc-product-feature__img {
    margin: 0;
  }
}

.xc-product-feature__img img {
  padding: 10px;
}

@media (min-width: 1400px) {
  .xc-product-feature__img img {
    padding: 60px;
  }
}

.xc-download-btns {
  display: inline-flex;
  gap: 20px;
  flex-wrap: wrap;
}

.xc-landing-download__list ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}

.xc-landing-download__list ul li {
  color: var(--swiftcart-black);
  display: flex;
  font-weight: 500;
}

.xc-landing-download__list ul li i {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 2px;
}

.xc-landing-download__right {
  position: relative;
}

.xc-landing-download__img__two {
  display: none;
}

@media (min-width: 576px) {
  .xc-landing-download__img__two {
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 80px;
  }
}

@media (min-width: 992px) {
  .xc-landing-download__img__two {
    margin-top: 0;
    position: absolute;
    right: auto;
    left: -50px;
    bottom: 80px;
  }
}

@media (min-width: 1200px) {
  .xc-landing-download__img__two {
    margin-top: 0;
    position: absolute;
    right: auto;
    left: -110px;
    bottom: 80px;
  }
}

.xc-landing-download__img {
  margin-top: 30px;
}

@media (min-width: 992px) {
  .xc-landing-download__img {
    margin-top: 0;
  }
}

.xc-landing-download__img img {
  width: 100%;
}

@media (min-width: 576px) {
  .xc-landing-download__img img {
    width: inherit;
  }
}

/*--------------------------------------------------------------
# 07. ECOMMERCE CSS
--------------------------------------------------------------*/
/*----------------------------------------
7.1 Product css
----------------------------------------*/
/* .xc-product-one__wrapper {
  border: 1px solid var(--swiftcart-border-color);
  border-radius: 10px;
  border-right: 0;
  overflow: hidden;
  margin-left: 0;
}

@media (min-width: 1200px) {
  .xc-product-one__wrapper {
    margin-left: -50px;
  }
}

.xc-product-one__wrapper .row [class*=col-] {
  border-right: 1px solid var(--swiftcart-border-color);
  border-bottom: 1px solid var(--swiftcart-border-color);
  margin-bottom: -2px;
  margin-left: 1px;
  margin-right: -1px;
}

.xc-product-one__item {
  text-align: center;
  padding: 10px;
  transition: 0.3s;
}

@media (min-width: 1400px) {
  .xc-product-one__item {
    padding: 18px 10px;
  }
}

.xc-product-one__item img {
  margin-bottom: 10px;
  height: 93px;
  object-fit: cover;
  transition: 0.3s;
}

.xc-product-one__item:hover img {
  transform: scale(1.1);
}

.xc-product-one__title {
  font-size: 16px;
  font-weight: 400;
}

.xc-product-one__title a:hover {
  color: var(--swiftcart-secondary);
}

.xc-product-one__price {
  color: var(--swiftcart-secondary);
  font-weight: 600;
}

.xc-product-two__item {
  border: 1px solid var(--swiftcart-border-color);
  border-radius: 10px;
  padding: 15px;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
}

.xc-product-two__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--swiftcart-black);
  opacity: 0;
  transition: 0.3s;
}

.xc-product-two__item:hover::before {
  opacity: 0.8;
}

.xc-product-two__item:hover .xc-product-two__btn {
  transform: translateX(-50%) translateY(-50%) scale(1);
  opacity: 1;
}

.xc-product-two__img {
  text-align: center;
  margin-bottom: 20px;
}

.xc-product-two__img img {
  height: 180px;
}

@media (min-width: 1400px) {
  .xc-product-two__img img {
    object-fit: cover;
  }
}

.xc-product-two__ratting {
  font-size: 17px;
  margin-bottom: 5px;
  display: inline-block;
}

.xc-product-two__ratting i {
  color: #FA8232;
}

.xc-product-two__title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.xc-product-two__title a:hover {
  color: var(--swiftcart-secondary);
}

.xc-product-two__price {
  font-size: 20px;
  font-weight: 700;
  color: var(--swiftcart-base);
}

.xc-product-two__deal {
  position: absolute;
  left: 15px;
  top: 20px;
  font-size: 13px;
  display: inline-block;
  background-color: var(--swiftcart-base);
  border-radius: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--swiftcart-white);
  padding: 5px 12px;
  line-height: 1.5;
}

.xc-product-two__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) scale(0.5);
  display: flex;
  gap: 20px;
  transition: 0.3s;
  opacity: 0;
}

.xc-product-two__btn a {
  width: 40px;
  height: 40px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--swiftcart-white);
  color: var(--swiftcart-base);
}

.xc-product-two__btn a:hover {
  background-color: var(--swiftcart-base);
  color: var(--swiftcart-white);
}

.xc-product-three__wrapper {
  border: 1px solid var(--swiftcart-border-color);
  border-radius: 10px;
  border-right: 0;
  overflow: hidden;
  margin-left: 0;
}

@media (min-width: 1400px) {
  .xc-product-three__wrapper {
    margin-left: -50px;
  }
}

.xc-product-three__wrapper .row [class*=col] {
  border-right: 1px solid var(--swiftcart-border-color);
  border-bottom: 1px solid var(--swiftcart-border-color);
  margin-bottom: -1px;
  margin-left: 0px;
  margin-right: 0px;
}

.xc-product-three__item {
  position: relative;
  transition: 0.3s;
  padding: 10px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .xc-product-three__item {
    padding: 15px 12px;
  }
}

@media (min-width: 1400px) {
  .xc-product-three__item {
    padding: 30px 20px;
  }
}

.xc-product-three__img {
  text-align: center;
  margin-bottom: 20px;
}

.xc-product-three__img img {
  height: 113px;
  object-fit: cover;
}

.xc-product-three__ratting {
  font-size: 17px;
  margin-bottom: 5px;
  display: inline-block;
}

.xc-product-three__ratting i {
  color: #fa8232;
}

.xc-product-three__title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--swiftcart-black);
}

.xc-product-three__title a:hover {
  color: var(--swiftcart-secondary);
}

.xc-product-three__price {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--swiftcart-base);
}

.xc-product-three__deal {
  position: absolute;
  right: 15px;
  top: 20px;
  font-size: 12px;
  display: inline-block;
  background-color: #EFD33D;
  border-radius: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--swiftcart-black);
  padding: 5px 12px;
  line-height: 1.5;
}

.xc-product-three__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) scale(0.5);
  display: flex;
  gap: 20px;
  transition: 0.3s;
  opacity: 0;
}

.xc-product-three__btn a {
  width: 40px;
  height: 40px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--swiftcart-white);
  color: var(--swiftcart-base);
}

.xc-product-three__btn a:hover {
  background-color: var(--swiftcart-base);
  color: var(--swiftcart-white);
}

.xc-product-five__wrapper {
  border: 1px solid var(--swiftcart-border-color);
  border-radius: 10px;
  overflow: hidden;
}

.xc-product-five__wrapper .row [class*=col] {
  border-right: 1px solid var(--swiftcart-border-color);
  border-bottom: 1px solid var(--swiftcart-border-color);
  margin-bottom: -2px;
  margin-left: 1px;
  margin-right: -1px;
}

.xc-product-five__wrapper .xc-product-three__item {
  padding: 30px;
}

.xc-product-five__wrapper .xc-product-three__deal {
  right: auto;
  left: 15px;
} */
/* 
.xc-product-six__item {
  background-color: var(--swiftcart-white);
  padding: 15px 15px;
  border-radius: 12px;
  position: relative;
  border: 1px solid var(--swiftcart-border-color);
  overflow: hidden;
}

.xc-product-six__item:hover .xc-product-six__img img {
  transform: scale(1.05);

} */
/* 
.xc-product-six__img {
  text-align: center;
  margin-bottom: 23px;
}

.xc-product-six__img img {
  transition: 0.3s;
  width: 100%;
}

.xc-product-six__offer {
  color: var(--swiftcart-white);
  font-size: 12px;
  font-weight: 500;
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 3px 10px;
  border-radius: 2px;
  display: inline-block;
  background-color: #E90F0F;
  z-index: 2;
  border-radius: 10px;
  line-height: 2;
}

.xc-product-six__price {
  font-size: 18px;
  font-weight: 500;
  gap: 6px;
  align-items: center;
  margin-bottom: 10px;
}

.xc-product-six__price del {
  color: var(--swiftcart-text);
  font-weight: 500;
  font-size: 14px;
  margin-left: 4px;
}

.xc-product-six__price span {

  display: inline-block;
  color: var(--swiftcart-black);
  border-radius: 4px;
  line-height: 1.3;
}

.xc-product-six__title {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--swiftcart-black);
}

.xc-product-six__title a:hover {
  color: var(--swiftcart-secondary);
}

.xc-product-six__ratting {
  margin-bottom: 20px;
  font-size: 16px;
}

.xc-product-six__ratting i {
  color: #FA8232;
}

.xc-product-six__btns {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.xc-product-seven__item {
  border: 1px solid var(--swiftcart-border-color);
  padding: 10px 17px;
  border-radius: 10px;
}

.xc-product-seven__item:hover .xc-product-seven__img img {
  transform: scale(1.05);
}

.xc-product-seven__price {
  font-weight: 500;
  font-size: 18px;
}

.xc-product-seven__title {
  font-size: 16px;
  font-weight: 400;
  color: var(--swiftcart-text);
}

.xc-product-seven__img {
  text-align: center;
  margin-bottom: 15px;
}

.xc-product-seven__img img {
  transition: 0.3s;
}

.xc-product-six-modify__item .xc-product-six__title {
  font-size: 14px;
}

.xc-product-six-modify__item .xc-product-six__ratting {
  margin-bottom: 0;
  line-height: 1.1;
}

.xc-product-eight__item:hover .xc-product-eight__icons {
  left: 30px;
  opacity: 1;
}

.xc-product-eight__item:hover .xc-product-eight__img img {
  transform: scale(1.1);
}

.xc-product-eight__item:hover .xc-product-eight__img::before {
  opacity: 0.4;
}

.xc-product-eight__img {
  position: relative;
  background-color: #E8E8E8;
  text-align: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.xc-product-eight__img img {
  transition: 0.3s;
}

.xc-product-eight__img::before {
  content: "";
  inset: 0;
  position: absolute;
  background-color: var(--swiftcart-black);
  opacity: 0;
  transition: 0.3s;
  z-index: 1;
}

.xc-product-eight__offer {
  font-size: 14px;
  font-weight: 400;
  right: 0;
  top: 0;
  position: absolute;
  display: inline-block;
  padding: 2px 9px;
  color: var(--swiftcart-white);
  text-transform: uppercase;
  background-color: var(--swiftcart-black);
}

.xc-product-eight__icons {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  transition: 0.3s;
  opacity: 0;
  z-index: 1;
}

.xc-product-eight__action {
  display: block;
  position: relative;
}

.xc-product-eight__action:hover .xc-product-eight__tooltip {
  visibility: visible;
  opacity: 1;
  left: 100%;
}

.xc-product-eight__action i {
  width: 38px;
  height: 38px;
  line-height: 38px;
  font-size: 18px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  background-color: var(--swiftcart-white);
}

.xc-product-eight__action i::before {
  line-height: unset !important;
}

.xc-product-eight__tooltip {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 90%;
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  font-family: var(--swiftcart-heading-font);
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-black);
  z-index: 1;
  display: inline-block;
  width: max-content;
  line-height: 1;
  padding: 8px 12px;
  margin-left: 8px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.xc-product-eight__tooltip::before {
  position: absolute;
  content: "";
  left: -8px;
  top: 50%;
  transform: translate(50%, -50%) rotate(45deg);
  height: 8px;
  width: 8px;
  background-color: var(--swiftcart-black);
}

.xc-product-eight__action+.xc-product-eight__action {
  margin-top: 10px;
}

.xc-product-eight__content {
  padding-left: 30px;
  border-left: 2px solid var(--swiftcart-border-color);
}

.xc-product-eight__title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.7;
  text-transform: capitalize;
}

.xc-product-eight__title a:hover {
  color: var(--swiftcart-secondary);
}

.xc-product-eight__ratting {
  font-size: 14px;
  font-family: var(--swiftcart-heading-font);
  margin-bottom: 5px;
}

.xc-product-eight__ratting i {
  font-size: 12px;
}

.xc-product-eight__price {
  font-size: 14px;
  margin-bottom: 0;
}

.xc-product-eight__price del {
  color: var(--swiftcart-text);
}

.xc-product-nine__item {
  padding: 40px;
  border-radius: 21px;
  text-align: center;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  background-color: var(--swiftcart-white);
}

.xc-product-nine__item:hover .xc-product-nine__icons {
  left: 0;
  opacity: 1;
}

.xc-product-nine__item:hover .xc-product-nine__img img {
  transform: scale(1.1);
}

.xc-product-nine__img {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.xc-product-nine__img img {
  transition: 0.3s;
}

.xc-product-nine__img::before {
  content: "";
  inset: 0;
  position: absolute;
  background-color: var(--swiftcart-black);
  opacity: 0;
  transition: 0.3s;
  z-index: 1;
}

.xc-product-nine__offer {
  font-size: 14px;
  font-weight: 400;
  right: 0;
  top: 0;
  position: absolute;
  display: inline-block;
  padding: 2px 9px;
  color: var(--swiftcart-white);
  text-transform: uppercase;
  background-color: var(--swiftcart-black);
}

.xc-product-nine__icons {
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  transition: 0.3s;
  opacity: 0;
  z-index: 1;
}

.xc-product-nine__action {
  display: block;
  position: relative;
}

.xc-product-nine__action:hover .xc-product-nine__tooltip {
  visibility: visible;
  opacity: 1;
  left: 100%;
}

.xc-product-nine__action i {
  width: 38px;
  height: 38px;
  line-height: 38px;
  font-size: 18px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  background-color: var(--swiftcart-white);
  border: 1px solid var(--swiftcart-border-color);
} */
/* 
.xc-product-nine__action i::before {
  line-height: unset !important;
}

.xc-product-nine__tooltip {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 90%;
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  font-family: var(--swiftcart-heading-font);
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-black);
  z-index: 1;
  display: inline-block;
  width: max-content;
  line-height: 1;
  padding: 8px 12px;
  margin-left: 8px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.xc-product-nine__tooltip::before {
  position: absolute;
  content: "";
  left: -8px;
  top: 50%;
  transform: translate(50%, -50%) rotate(45deg);
  height: 8px;
  width: 8px;
  background-color: var(--swiftcart-black);
}

.xc-product-nine__action+.xc-product-nine__action {
  margin-top: 10px;
}

.xc-product-nine__title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: capitalize;
  line-height: 1.7;
}

.xc-product-nine__ratting {
  font-size: 14px;
  font-family: var(--swiftcart-heading-font);
  margin-bottom: 5px;
}

.xc-product-nine__ratting i {
  font-size: 12px;
  color: #FA8232;
}

.xc-product-nine__price {
  font-size: 20px;
  font-weight: 700;
  color: var(--swiftcart-base);
  margin-bottom: 0;
}

.xc-product-nine__price del {
  font-weight: 400;
  font-size: 14px;
  color: var(--swiftcart-text);
}

.xc-product-ten__item {
  position: relative;
  transition: 0.3s;
  background-color: var(--swiftcart-gray-2);
}

.xc-product-ten__item:hover .xc-product-ten__img::before {
  opacity: 1;
  transform: scale(1);
}

.xc-product-ten__item:hover .xc-product-ten__content {
  opacity: 1;
  transform: scale(1);
}

.xc-product-ten__img {
  position: relative;
}

.xc-product-ten__img::before {
  content: "";
  inset: 0;
  background-color: rgba(51, 51, 51, 0.7);
  position: absolute;
  z-index: 1;
  display: inline-block;
  opacity: 0;
  transform: scale(0.6);
  transition: 0.3s;
}

.xc-product-ten__content {
  text-align: center;
  position: absolute;
  inset: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border: 1px solid var(--swiftcart-border-color);
  z-index: 2;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s;
}

@media (min-width: 992px) {
  .xc-product-ten__content {
    inset: 40px;
    padding: 40px;
  }
}

.xc-product-ten__title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--swiftcart-white);
}

.xc-product-ten__title a {
  background-image: linear-gradient(currentcolor, currentcolor), linear-gradient(currentcolor, currentcolor);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.xc-product-ten__title a:hover {
  background-size: 0% 1px, 100% 1px;
}

.xc-product-ten__price {
  font-size: 16px;
  font-weight: 500;
  color: var(--swiftcart-white);
  margin-bottom: 30px;
}

.xc-product-ten__btn {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.xc-product-ten__btn a {
  width: 50px;
  height: 50px;
  background-color: var(--swiftcart-white);
  color: var(--swiftcart-black);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s;
}

.xc-product-ten__btn a:hover {
  background-color: var(--swiftcart-black);
  color: var(--swiftcart-white);
}

.xc-product-list__wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.xc-product-list__heading {
  font-size: 16px;
  font-weight: 600;
}

.xc-product-list__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: var(--swiftcart-white);
  border-radius: 10px;
  border: 1px solid var(--swiftcart-border-color);
  transition: 0.3s;
}

.xc-product-list__item:hover {
  border-color: var(--swiftcart-base);
}

.xc-product-list__thumb {
  flex-shrink: 0;
  min-width: 62px;
}

.xc-product-list__title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.xc-product-list__title a:hover {
  color: var(--swiftcart-secondary);
}

.xc-product-list__price {
  color: var(--swiftcart-base);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--swiftcart-heading-font);
  display: inline-block;
}

.xc-product-list__ratting {
  font-size: 14px;
}

.xc-product-list__ratting i {
  color: #FA8232;
}

.xc-product-list__item-two {
  align-items: start;
}

.xc-product-list__item-two .xc-product-list__price {
  font-weight: 700;
  font-size: 20px;
} */

/*----------------------------------------
7.2 Product Details css
----------------------------------------*/


.product__details-thumb-content {
  margin-bottom: 14px;
  background-color: var(--swiftcart-white);
}

.product__details-thumb-nav .nav-link {
  width: 120px;
  height: 120px;
  position: relative;
  margin-bottom: 10px;
  background-color: var(--swiftcart-white);
}

.product__details-thumb-nav .nav-link img {
  width: 100%;
}

.product__details-thumb-nav .nav-link::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid var(--swiftcart-base);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}

.product__details-thumb-nav .nav-link.active::after {
  visibility: visible;
  opacity: 1;
}

.product__details-stock {
  margin-bottom: 13px;
}

.product__details-stock span {
  font-family: var(--xc-ff-inter);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: var(--swiftcart-base);
  border: 1px solid rgba(245, 9, 99, 0.1);
  padding: 5px 18px;
}

.product__details-title {
  font-family: var(--swiftcart-heading-font);
  font-weight: 500;
  font-size: 34px;
  margin-bottom: 5px;
}

.product__details-rating {
  margin-bottom: 13px;
}

.product__details-rating-count {
  position: relative;
  margin-bottom: 2px;
  padding-left: 9px;
}

.product__details-rating-count span {
  font-family: var(--swiftcart-heading-font);
  font-size: 14px;
}

.product__details-wrapper p {
  font-family: var(--swiftcart-heading-font);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 23px;
}

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

.product__details-price span {
  font-family: var(--swiftcart-heading-font);
  line-height: 1;
}

.product__details-ammount {
  font-weight: 600;
  font-size: 24px;
  color: var(--swiftcart-secondary);
}

.product__details-ammount.old-ammount {
  font-weight: 400;
  font-size: 16px;
  text-decoration-line: line-through;
  color: var(--swiftcart-text);
}

.product__details-ammount.new-ammount {
  font-weight: 600;
  font-size: 24px;
  color: var(--swiftcart-secondary);
  margin-left: 1px;
}

.product__details-offer {
  margin-left: 2px;
  font-weight: 700;
  font-size: 13px;
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-base);
  padding: 3px 9px;
  display: inline-block;
  transform: translateY(-4px);
}

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

.product__details-action {
  padding-bottom: 34px;
  border-bottom: 1px solid #DADCE0;
  margin-bottom: 32px;
  gap: 20px;
}

.product__details-action button {
  margin-bottom: 0px;
}

.product__details-action button.product-action-btn {
  width: 40px;
  height: 40px;
  line-height: 44px;
  text-align: center;
  font-size: 18px;
  color: var(--swiftcart-black);
  border: 1px solid #DADCE0;
  border-radius: 10px;
}

@media (min-width: 1400px) {
  .product__details-action button.product-action-btn {
    width: 60px;
    height: 60px;
    line-height: 64px;
  }
}

.product__details-action button.product-action-btn .product-action-tooltip {
  top: auto;
  bottom: 90%;
  left: auto;
  right: auto;
  margin: auto;
  margin-bottom: 10px;
  transform: translate(-57%, 0%);
}

.product__details-action button.product-action-btn .product-action-tooltip::after {
  top: 100%;
  right: 50%;
  left: auto;
  transform: translate(-57%, 0%) rotate(45deg);
}

.product__details-action button.product-action-btn:hover {
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-base);
  border-color: var(--swiftcart-base);
}

.product__details-action button.product-action-btn:hover .product-action-tooltip {
  bottom: 100%;
  top: auto;
  right: auto;
}

.product__details-more p {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  color: var(--swiftcart-black);
}

.product__details-more span {
  font-size: 15px;
  line-height: 1;
  color: var(--swiftcart-text);
}

.product__details-more span a:hover {
  color: var(--swiftcart-base);
}

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

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

.product__details-tags span {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  color: var(--swiftcart-black);
  margin-right: 3px;
}

.product__details-tags a {
  font-size: 14px;
  line-height: 1;
  color: var(--swiftcart-text);
  border: 1px solid #DADCE0;
  padding: 4px 12px;
  margin-bottom: 6px;
  display: inline-block;
}

.product__details-tags a:hover {
  background-color: var(--swiftcart-base);
  border-color: var(--swiftcart-base);
  color: var(--swiftcart-white);
}

.product__details-share span {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  color: var(--swiftcart-black);
  margin-right: 9px;
}

.product__details-share a {
  font-size: 14px;
  line-height: 1;
  color: var(--swiftcart-text);
  margin-bottom: 6px;
  margin-right: 10px;
}

.product__details-share a:hover {
  color: var(--swiftcart-base);
}

.product__details-tab-nav {
  border-bottom: 1px solid #DADCE0;
}

.product__details-tab-nav-inner {
  position: relative;
}

.product__details-tab-nav .nav-link {
  position: relative;
  padding: 11px 14px;
  font-weight: 500;
  font-size: 16px;
  color: var(--swiftcart-text);
}

.product__details-tab-nav .nav-link.active,
.product__details-tab-nav .nav-link:hover {
  color: var(--swiftcart-black);
}

.product__details-tab-nav .nav-link.active::after,
.product__details-tab-nav .nav-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

@media (max-width: 575px) {
  .product__details-tab-nav .nav-link::after {
    position: absolute;
    content: "";
    left: auto;
    right: 0;
    bottom: -1px;
    width: 0%;
    height: 2px;
    background-color: var(--xc-theme-3);
    transition: 0.3s;
  }
}

.product__details-tab-nav .xc-tab-menu {
  position: relative;
}

.product__details-tab-nav .xc-tab-line {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  width: 38%;
  height: 2px;
  background-color: var(--swiftcart-base);
  transition: 0.3s;
}

[dir=rtl] .product__details-tab-nav .xc-tab-line {
  left: auto;
  right: 0;
}

.product__details-description-content .product-desc-title {
  font-family: var(--swiftcart-heading-font);
  font-weight: 500;
  font-size: 34px;
  color: var(--xc-common-black-solid);
  margin-bottom: 10px;
}

.product__details-description-content p {
  font-family: var(--swiftcart-heading-font);
  font-size: 15px;
  line-height: 1.67;
  color: var(--swiftcart-text);
  margin-bottom: 25px;
}

.product__details-description .product-desc-feature-thumb {
  margin-bottom: 30px;
}

.product__details-description .product-desc-feature-content p {
  line-height: 1.56;
  padding-right: 75px;
}

.product__details-additional {
  margin-top: 10px;
  background-color: var(--swiftcart-white);
}

@media (min-width: 576px),
(max-width: 575px) {
  .product__details-additional {
    overflow-x: scroll;
  }
}

.product__details-additional-inner {
  padding: 45px 70px 45px;
  border: 1px solid #E9E9F0;
}

@media (min-width: 768px) {
  .product__details-additional-inner {
    padding: 15px 40px 15px;
  }
}

@media (min-width: 576px),
(max-width: 575px) {
  .product__details-additional-inner {
    width: 768px;
  }
}

.product__details-additional table {
  width: 100%;
}

.product__details-additional table tr {
  padding: 6px 0 6px;
  display: block;
}

.product__details-additional table tr:not(:last-child) {
  border-bottom: 1px solid #E9E9F0;
}

.product__details-additional table tr th {
  font-family: var(--swiftcart-heading-font);
  font-weight: 500;
  font-size: 15px;
  color: var(--swiftcart-black);
  width: 28%;
  display: inline-block;
}

.product__details-additional table tr td {
  width: 71%;
  display: inline-block;
  font-family: var(--swiftcart-heading-font);
  font-size: 15px;
  color: var(--swiftcart-text);
}

.product__details-review-inner {
  padding: 62px 70px 70px;
  border: 1px solid #E9E9F0;
}

@media (min-width: 768px) {
  .product__details-review-inner {
    padding: 35px 40px 40px;
  }
}

@media (min-width: 576px) {
  .product__details-review-inner {
    padding: 25px 30px 30px;
  }
}

@media (max-width: 575px) {
  .product__details-review-inner {
    padding: 15px 20px 20px;
  }
}

.product__details-review .product-rating-title {
  font-family: var(--swiftcart-heading-font);
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 22px;
}

.product__details-review .product-rating-number {
  text-align: center;
  width: 160px;
  height: 125px;
  border: 1px solid #E9E9F0;
  padding-top: 21px;
  padding-bottom: 21px;
}

[dir=rtl] .product__details-review .product-rating-number {
  margin-right: 0;
  margin-left: 40px;
}

@media (max-width: 575px) {
  .product__details-review .product-rating-number {
    margin-bottom: 15px;
  }
}

.product__details-review .product-rating-number-title {
  font-family: var(--swiftcart-heading-font);
  font-weight: 400;
  font-size: 60px;
  line-height: 1;
  color: var(--xc-common-black-solid);
  margin-bottom: 0;
}

.product__details-review .product-rating-star {
  line-height: 1;
}

.product__details-review .product-rating-star span {
  line-height: 1;
  font-size: 12px;
  color: var(--xc-common-yellow-5);
  display: inline-block;
}

.product__details-review .product-rating-star span:not(:last-child) {
  margin-right: 3px;
}

[dir=rtl] .product__details-review .product-rating-star span:not(:last-child) {
  margin-right: 0;
  margin-left: 3px;
}

.product__details-review .product-rating-bar {
  width: 100%;
  background-color: #E9E9E9;
  border-radius: 10px;
}

.product__details-review .product-rating-bar-wrapper {
  width: 71.5%;
}

@media (min-width: 1200px) {
  .product__details-review .product-rating-bar-wrapper {
    width: 70%;
  }
}

@media (min-width: 768px) {
  .product__details-review .product-rating-bar-wrapper {
    width: 66%;
  }
}

@media (min-width: 576px) {
  .product__details-review .product-rating-bar-wrapper {
    width: 52%;
  }
}

@media (max-width: 575px) {
  .product__details-review .product-rating-bar-wrapper {
    width: 100%;
  }
}

.product__details-review .product-rating-bar .single-progress {
  background-color: var(--swiftcart-base);
  height: 8px;
  border-radius: 10px;
}

.product__details-review .product-rating-bar-text {
  width: 3.5%;
  line-height: 1;
}

@media (min-width: 576px),
(max-width: 575px) {
  .product__details-review .product-rating-bar-text {
    width: 7.5%;
  }
}

.product__details-review .product-rating-bar-text span {
  font-family: var(--swiftcart-heading-font);
  font-size: 14px;
  color: var(--swiftcart-text);
}

.product__details-review .product-rating-bar-item:not(:last-child) {
  margin-bottom: 5px;
}

.product__details-review .product-review-item {
  margin-bottom: 30px;
}

.product__details-review .product-review-item:last-child {
  margin-bottom: 0;
}

.product__details-review .product-review-item p {
  font-family: var(--swiftcart-heading-font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--swiftcart-text);
}

.product__details-review .product-review-avater {
  margin-bottom: 11px;
}

.product__details-review .product-review-avater-thumb img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-right: 10px;
}

.product__details-review .product-review-avater-title {
  font-family: var(--swiftcart-heading-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 0;
}

.product__details-review .product-review-rating {
  margin-bottom: 5px;
}

.product__details-review .product-review-rating-wrapper {
  margin-right: 10px;
}

[dir=rtl] .product__details-review .product-review-rating-wrapper {
  margin-right: 0;
  margin-left: 10px;
}

.product__details-review .product-review-rating-wrapper span {
  line-height: 1;
  font-size: 12px;
  color: var(--xc-common-yellow-5);
  display: inline-block;
}

.product__details-review .product-review-rating-wrapper span:not(:last-child) {
  margin-right: 3px;
}

.product__details-review .product-review-rating-date span {
  font-family: var(--swiftcart-heading-font);
  font-weight: 400;
  font-size: 13px;
  color: var(--swiftcart-text);
}

.product__details-review .product-review-form p {
  font-family: var(--swiftcart-heading-font);
  font-weight: 400;
  font-size: 14px;
  color: var(--swiftcart-text);
  margin-bottom: 20px;
}

.product__details-review .product-review-form-title {
  font-family: var(--swiftcart-heading-font);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.product__details-review .product-review-form-rating .rate-title {
  font-family: var(--swiftcart-heading-font);
  font-weight: 500;
  font-size: 15px;
  line-height: 14px;
  letter-spacing: -0.02em;
  color: var(--swiftcart-text);
}

.product__details-review .product-review-input {
  margin-bottom: 18px;
  line-height: 1;
}

.product__details-review .product-review-input.is-textarea {
  margin-bottom: 30px;
}

.product__details-review .product-review-input input,
.product__details-review .product-review-input textarea {
  height: 45px;
  line-height: 45px;
  background-color: transparent;
  border: 1.5px solid var(--swiftcart-border-color);
}

.product__details-review .product-review-input textarea {
  height: 180px;
  line-height: 1.2;
  padding-bottom: 20px;
}

.product__details-review .product-review-agree input {
  margin: 0;
  display: block;
  width: 18px;
  height: 18px;
  background: transparent;
  border: 2px solid #B2B2B9;
  border-radius: 4px;
  outline: none;
  flex: 0 0 auto;
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  -ms-transform: translateY(3px);
  -o-transform: translateY(3px);
  transform: translateY(3px);
  padding: 0;
}

.product__details-review .product-review-agree input:hover {
  cursor: pointer;
}

.product__details-review .product-review-agree label {
  padding-left: 8px;
  font-size: 14px;
  line-height: 1.71;
  color: var(--swiftcart-text);
}

.product__details-review .product-review-agree label a {
  color: var(--swiftcart-black);
  font-weight: 600;
  padding-left: 4px;
}

.product__details-review .product-review-agree label a:hover {
  color: var(--swiftcart-base);
}

.product__details-review .product-review-agree label:hover {
  cursor: pointer;
}

.product__details-review .product-review-btn .xc-btn {
  font-family: var(--swiftcart-heading-font);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 37px;
}

.product__details-review .product-review-btn .xc-btn:hover {
  background-color: var(--swiftcart-black);
}

.xc-product-quantity {
  width: 148px;
  position: relative;
}

.xc-cart-plus,
.xc-cart-minus {
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: inline-block;
  text-align: center;
  font-size: 15px;
  color: var(--xc-common-black);
  transition: 0.3s;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.xc-cart-plus::after,
.xc-cart-minus::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 26px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-color: #DADCE0;
}

.xc-cart-plus svg,
.xc-cart-minus svg {
  transform: translateY(-2px);
}

.xc-cart-plus:hover,
.xc-cart-minus:hover {
  cursor: pointer;
  color: var(--xc-theme-1);
}

.xc-cart-plus.xc-cart-plus,
.xc-cart-minus.xc-cart-plus {
  left: auto;
  right: 0;
}

.xc-cart-plus.xc-cart-plus::after,
.xc-cart-minus.xc-cart-plus::after {
  left: 0;
  right: auto;
}

.xc-cart-input[type=text] {
  height: 44px;
  text-align: center;
  font-size: 14px;
  border: 1px solid #DADCE0;
  background-color: var(--swiftcart-white);
  padding: 0 45px;
}

.xc-cart-input[type=text]:focus {
  outline: none;
}

.product__rating.product__rating {
  color: #FF9017;
  gap: 5px;
}

/*----------------------------------------
7.3 Shop css
----------------------------------------*/
.shop__widget .accordion {
  --bs-accordion-bg: transparent;
}

.shop__widget .accordion-button {
  background-color: transparent;
  border: 0;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
  font-weight: 600;
  font-size: 16px;
  font-family: var(--swiftcart-heading-font);
}

.shop__widget .accordion-body {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.shop__widget .accordion-item {
  border-radius: 0;
}

.shop__widget .accordion-item+.accordion-item {
  border-top: 1px solid var(--swiftcart-border-color);
}

.shop__widget .ui-corner-all {
  background-color: rgba(var(--swiftcart-base-rgb), 0.5);
  border-radius: 100px;
}

.shop__widget .ui-slider-horizontal .ui-slider-range {
  background-color: var(--swiftcart-base);
}

.shop__widget .ui-state-default,
.shop__widget .ui-widget-content .ui-state-default,
.shop__widget .ui-widget-header .ui-state-default {
  background-color: var(--swiftcart-base);
  outline: 0;
}

.shop__widget .ranger-min-max-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.shop__widget .ranger-min-max-block input {
  background-color: transparent;
  border: 0;
  height: 30px;
  padding-left: 0;
  padding-right: 0;
}

.shop__widget .ranger-min-max-block input[type=submit] {
  background-color: var(--swiftcart-base);
  height: 30px;
  padding-left: 20px;
  padding-right: 20px;
  color: var(--swiftcart-white);
}

.shop__widget .ranger-min-max-block input[type=submit]:hover {
  background-color: var(--swiftcart-secondary);
}

.xc-shop-top {
  padding: 6px 20px;
}

.xc-shop-top p {
  margin-bottom: 0;
  font-size: 14px;
  color: #0c217b;
}

/*----------------------------------------
7.4 Cart css
----------------------------------------*/
.xc-cart-page__table {
  overflow: auto;
}

.xc-cart-page__table table {
  background: var(--swiftcart-white);
  border-radius: 0;
  text-align: center;
  margin-bottom: 0;
  border-radius: 8px;
  width: 800px;
}

@media (min-width: 1200px) {
  .xc-cart-page__table table {
    width: 100%;
  }
}

.xc-cart-page__table table tr {
  border-bottom: 1px solid var(--swiftcart-border-color);
}

.xc-cart-page__table table td {
  padding: 20px 10px;
  vertical-align: middle;
  font-size: 16px;
}

.xc-cart-page__table table td.product-name {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}

.xc-cart-page__table table td.product-thumbnail {
  width: 80px;
  height: 90px;
  padding: 0;
  margin: 40px 30px;
  display: inline-block;
  overflow: hidden;
  background-color: var(--swiftcart-gray);
}

.xc-cart-page__table table td.product-thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.accordion-item {
  border: 0;
}

.shop_cart_widget .accordion-button {
  background-color: var(--swiftcart-base);
  color: var(--swiftcart-white);
  font-size: 16px;
  font-weight: 700;
}

.shop_cart_widget .accordion-button:focus {
  box-shadow: none;
}

.shop_cart_widget .accordion-body {
  position: relative;
  padding: 20px;
  padding-bottom: 70px;
  border: 0;
}

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

.shop_cart_widget .cart-coupon-code {
  position: relative;
  margin-bottom: 20px;
}

.shop_cart_widget .cart-coupon-code input {
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
  padding-right: 130px;
  border-radius: 4px;
}

.shop_cart_widget .cart-coupon-code button {
  position: absolute;
  right: 0;
  color: var(--swiftcart-base);
  line-height: 50px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding-left: 30px;
  padding-right: 30px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.shop_cart_widget .cart-coupon-code button:hover {
  background-color: var(--swiftcart-base);
  color: var(--swiftcart-white);
}

.shop_cart_widget .cart-totails,
.shop_cart_widget .cart-subtitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.shop_cart_widget .cart-totails h4,
.shop_cart_widget .cart-subtitle h4 {
  font-size: 16px;
}

.shop_cart_widget .cart-totails h4 {
  text-transform: uppercase;
}

.shop_cart_widget .cart-checkout {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--swiftcart-border-color);
}

.shop_cart_widget .cart-checkout h4 {
  font-size: 16px;
}

.shop_cart_widget .cart-checkout-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0 0 4px 4px;
  display: block;
  height: 50px;
  line-height: 50px;
  text-align: center;
  text-transform: uppercase;
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-base);
  overflow: hidden;
}

.shop_cart_widget .cart-checkout-btn:hover {
  background-color: var(--swiftcart-secondary);
}

.checkout-form-list {
  margin-bottom: 30px;
}

.checkout-form-list textarea,
.checkout-form-list input {
  background-color: var(--swiftcart-white);
}

.checkout-form-list textarea {
  height: 240px;
}

/*--------------------------------------------------------------
# 08. FOOTER CSS
--------------------------------------------------------------*/
/*----------------------------------------
8.1 Footer Style 1
----------------------------------------*/
.xc-footer-one__logo {
  margin-bottom: 20px;
}

.xc-footer-one__about {
  color: #929FA5;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 25px;
}

.xc-footer-one__social {
  display: inline-flex;
  gap: 10px;
}

.xc-footer-one__social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--swiftcart-white-rgb), 0.6);
  background-color: rgba(var(--swiftcart-white-rgb), 0.03);
  border-radius: 50%;
  position: relative;
  transition: 0.3s;
}

.xc-footer-one__social a:hover {
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-base);
}

.xc-footer-one__widget-title {
  color: var(--swiftcart-white);
  font-size: 20px;
  font-weight: 700;
  position: relative;
  margin-bottom: 30px;
  line-height: 1.4;
}

.xc-footer-one__nav {
  margin-left: 0;
  padding-left: 0;
}

.xc-footer-one__nav li {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.xc-footer-one__nav li a {
  font-size: 15px;
  color: #929FA5;
  transition: 0.4s;
}

.xc-footer-one__nav li a:hover {
  color: var(--swiftcart-white);
}

.xc-footer-one__nav li+li {
  margin-top: 6px;
}

.xc-footer-one__blog+.xc-footer-one__blog {
  margin-top: 10px;
}

.xc-footer-one__blog {
  display: flex;
  align-items: center;
  gap: 15px;
}

.xc-footer-one__blog-thumb img {
  width: 85px;
  height: 85px;
  object-fit: cover;
}

.xc-footer-one__blog-meta span {
  color: rgba(var(--swiftcart-white-rgb), 0.6);
  margin-right: 10px;
  font-size: 13px;
}

.xc-footer-one__blog-meta span i {
  color: var(--swiftcart-base);
  margin-right: 5px;
}

.xc-footer-one__blog-title {
  line-height: 1.1;
}

.xc-footer-one__blog-title a {
  font-size: 16px;
  color: var(--swiftcart-white);
  opacity: 0.8;
  font-weight: 500;
  line-height: 1;
  background-image: linear-gradient(currentcolor, currentcolor), linear-gradient(currentcolor, currentcolor);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: 0.4s;
}

.xc-footer-one__blog-title a:hover {
  opacity: 1;
  background-size: 0% 1px, 100% 1px;
}

.xc-footer-one__cta {
  margin-bottom: 15px;
}

.xc-footer-one__cta span {
  color: #929FA5;
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.xc-footer-one__cta span i {
  color: currentColor;
  font-size: 18px;
  opacity: 1;
  position: relative;
  top: 3px;
  margin-right: 8px;
}

.xc-footer-one-copyright {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: rgba(255, 255, 255, 0.05); */
  border: 1px solid #cfcfcf48;
}

.xc-footer-one-copyright p {
  margin-bottom: 0;
  text-align: center;
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 400;
}

.tagcloud-style-2 a {
  background-color: transparent;
  border: 1px solid #303639;
  color: #929FA5;
}

/*# sourceMappingURL=swiftcart.css.map */


.btn_position {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 11;
}

.xc-category {
  font-size: 12px;
  font-weight: 600;
  color: #0c217b;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.swiftcart-btn-whatsapp {
  font-size: 15px;
  padding: 6px 18px;
  font-weight: 500;
  border-radius: 8px;
  display: inline-block;
  background-color: #18b853;
  color: #fff;
  letter-spacing: -0.3px;
  transition: all .3s ease;
  border: 1px solid #18b853;
}

.swiftcart-btn-whatsapp:hover {
  color: #fff;
  background-color: #19d65b;
}

.xc-feature-item__icon {
  width: 45px;
  height: auto;
}


.about-tech {
  background: #0e2041;
  color: #ddd;
}

.about-tech p {
  color: #d8d8d8;
  line-height: 1.8;
}

.about-list {
  padding-left: 18px;
  margin-top: 20px;
}

.about-list li {
  margin-bottom: 2px;
  font-size: 15px;
}

.about-image img {
  width: 100%;
  max-width: 550px;
  object-fit: cover;
}

.info-box {
  padding-top: 20px;

}

.info-box h5 {
  color: #fff;
  font-weight: 500;
  margin-bottom: 12px;
}

.info-box p {
  margin-bottom: 0;
  font-size: 15px;
}

.border-start-md {
  padding-left: 25px;
  border-left: 1px solid rgba(255, 255, 255, .25);
}

@media (max-width: 767px) {

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

  .about-list {
    text-align: left;
    display: inline-block;
  }

  .border-start-md {
    border-left: 0;
    padding-left: 0;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .2);
  }

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

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


.watch-before-buy {
  background: #f8f8f8;
}

.video-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.video-item video,
.video-item iframe,
.video-item img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border: none;
  border-radius: 15px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

@media(max-width:768px) {

  .video-item video,
  .video-item iframe,
  .video-item img {
    height: 420px;
  }
}


.review-card {
  position: relative;
}

.customer-review-section {
  /* background: #0e2041; */
}

.review-heading {
  color: #fff;
  font-weight: 700;
}

.review-subtitle {
  color: #ddd;
}

.google-rating-box h2 {
  color: #fff;
  font-weight: 700;
}

.google-rating-box p {
  color: #fff;
}

.stars {
  color: #ffc107;
  font-size: 28px;
  letter-spacing: 3px;
}

.google-logo {
  max-width: 150px;
}

.review-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  min-height: 220px;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.review-top h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.review-top small {
  color: #888;
}

.review-stars {
  color: #ffc107;
  margin-bottom: 2px;
  font-size: 14px;
}

.review-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.google-icon {
  width: 22px !important;
  height: 22px;
  position: absolute;
  right: 15px;
  bottom: 15px;
  display: inline;
}

.review-carousel .owl-nav {
  text-align: right;
  margin-top: 20px;
}

.review-carousel .owl-nav button {
  width: 35px;
  height: 35px;
  border-radius: 50% !important;
  background: #fff !important;
  margin-left: 8px;
}

.review-carousel .owl-nav button span {
  font-size: 22px;
  line-height: 1;
}

@media(max-width:991px) {

  .google-rating-box {
    margin-bottom: 30px;
  }

  .review-card {
    min-height: auto;
  }
}

.review_image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  color: #222;

}



.brand-section {
  background: #fff;
}

.brand-card {
  display: block;
  text-align: center;
  padding: 30px 20px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  transition: .3s;
  text-decoration: none;
  height: 100%;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.brand-card img {
  width: 100%;
  max-width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.brand-card h6 {
  color: #222;
  font-size: 17px;
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}


.footer-links-small {
  font-size: 13px;
  color: #cfcfcf;
}

.footer-links-small p {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 400;
}

.footer-links-small a {
  color: #cfcfcf;
  text-decoration: none;
}

.footer-links-small a:hover {
  color: #fff;
}

.xc-footer-one__widget-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
}

.xc-shop-top-select select {
  font-size: 15px !important;
}

.shop__sidebar label {
  font-size: 14px;
}


.cx_title {
  font-size: 17px;
  font-weight: 600;
  color: #222;
}


.cx_h5 {
  font-size: 16px;
  font-weight: 500;
  color: #222;
}

.cx_h8 {
  font-size: 15px;
  color: #222;
  font-weight: 400;
}

.cx_text {
  font-size: 15px;
  font-weight: 400;
  color: #5c5c5c;
}

.cx_text-14 {
  font-size: 14px;
  font-weight: 400;
  color: #5c5c5c;
}


.cx_btn_sm {
  padding: 2px 15px;
  font-size: 13px;
}




.cx-field input,
.cx-field textarea,
.cx-field select {
  width: 100%;
  height: 45px;
  padding: 10px 15px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  background: #fff;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
  outline: none;
}

.cx-field textarea {
  height: 120px;
  resize: vertical;
}

.cx-field input:focus,
.cx-field textarea:focus,
.cx-field select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.cx-field input::placeholder,
.cx-field textarea::placeholder {
  color: #999;
}



.custom-coupon .form-control {
  border: 1px solid #281e74;
  height: 45px;
  font-size: 14px;
  background-color: transparent;

  border-top-left-radius: 8px;
  border-top-right-radius: 8px;

}

.custom-coupon .form-control:focus {
  border-color: #281e74;
  box-shadow: none;
}

.custom-coupon .btn {
  background: #281e74;
  color: #fff;
  font-size: 14px;
  border: 1px solid #281e74;
  padding: 0 25px;
  font-weight: 500;
  transition: 0.3s;
}

.custom-coupon .btn:hover {
  background: #1d1558;
  border-color: #1d1558;
  color: #fff;
}


.order-summary-box {
  padding: 0px 0px;
  background: #fff;
  border-radius: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 15px;
  color: #555;
}

.discount-row {
  color: #28a745;
  font-weight: 500;
}

.summary-divider {
  height: 1px;
  background: #e5e5e5;
  margin: 15px 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-total h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #281e74;
}


.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  margin: 3px;
}

/* Order Status */
.status-pending {
  background: #FEF3C7;
  color: #B45309;
  border-color: #FCD34D;
}

.status-processing {
  background: #F3E8FF;
  color: #7E22CE;
  border-color: #D8B4FE;
}

.status-confirmed {
  background: #DBEAFE;
  color: #1D4ED8;
  border-color: #93C5FD;
}

.status-packed {
  background: #E0F2FE;
  color: #0369A1;
  border-color: #7DD3FC;
}

.status-shipped {
  background: #EEF2FF;
  color: #4338CA;
  border-color: #A5B4FC;
}

.status-out {
  background: #F5F3FF;
  color: #6D28D9;
  border-color: #C4B5FD;
}

.status-delivered {
  background: #DCFCE7;
  color: #15803D;
  border-color: #86EFAC;
}

.status-cancelled {
  background: #FEE2E2;
  color: #B91C1C;
  border-color: #FCA5A5;
}

.status-returned {
  background: #FFF7ED;
  color: #C2410C;
  border-color: #FDBA74;
}

.status-refunded {
  background: #CCFBF1;
  color: #0F766E;
  border-color: #5EEAD4;
}

.status-failed {
  background: #FEE2E2;
  color: #991B1B;
  border-color: #F87171;
}

/* Payment Status */

.status-paid {
  background: #DBEAFE;
  color: #1D4ED8;
  border-color: #93C5FD;
}

.status-unpaid {
  background: #F3F4F6;
  color: #4B5563;
  border-color: #D1D5DB;
}

.status-partial {
  background: #FEF3C7;
  color: #B45309;
  border-color: #FCD34D;
}


.container_title .custom_title,
.container_title2 .custom_title {
  font-size: 34px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.container_title p,
.container_title2 p {
  font-size: 15px;
  color: #6b7280;
}


.container_title2 .custom_title {
  color: #f1f1f1;
}

.container_title2 p {
  color: #e7e7e7;
}

.container_title2,
.container_title {
  margin-bottom: 40px;
}



/* ===========================
   Padding Top
=========================== */
.section-pt-70 {
  padding-top: 70px;
}

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

/* ===========================
   Padding Bottom
=========================== */
.section-pb-70 {
  padding-bottom: 70px;
}

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

/* ===========================
   Margin Top
=========================== */
.section-mt-70 {
  margin-top: 70px;
}

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

/* ===========================
   Margin Bottom
=========================== */
.section-mb-70 {
  margin-bottom: 70px;
}

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

.add-address-box h5 {
  font-weight: 500;
  font-size: 18px;
}


.container {
  width: 100%;
  max-width: 1440px !important;
  padding-left: 60px;
  padding-right: 60px;
}

/* Large Devices */
@media (max-width: 1199.98px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Medium Devices */
@media (max-width: 991.98px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Small Devices */
@media (max-width: 767.98px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}






.account-sidebar {
  padding: 0px;
}

.account-user {
  padding-bottom: 20px;
  border-bottom: 1px solid #E5E7EB;
}

.account-nav {
  gap: 10px;
}

.account-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px;
  border-radius: 6px;
  color: #111827;
  font-weight: 600;
  transition: .3s;
  background: #fff;
  font-size: 15px;
}

.account-nav .nav-link i {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #E5E7EB;
  color: #0c217b;
  font-size: 15px;
  transition: .3s;
}

.account-nav .nav-link:hover {
  background: #0c217b;
  color: #f3f5ff;
  transform: translateX(2px);
}

.account-nav .nav-link.active {
  background: #0c217b;
  color: #f3f5ff;
  font-weight: 600;
}

.account-nav .nav-link.active i {
  background: #fff;
  border-color: #C7D2FE;
}

.account-nav hr {
  margin: 12px 0;
  opacity: .15;
}

.account-nav .text-danger {
  color: #EF4444 !important;
}

.account-nav .text-danger:hover {
  background: #FEF2F2;
}

@media(max-width:991px) {

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

}

.tab_continer {
  background-color: #ffffff;

  border: 1px solid #f0f0f0;
  border-radius: 8px;
  width: 100%;
  min-height: 600px;
  padding: 25px;
}

/* account-welcome */
.account-welcome {
  border-radius: 8px;
  padding: 45px;
  background: #f8f8f8;
}

.account-tag {
  display: inline-block;
  padding: 2px 18px;
  border-radius: 10px;
  background: #eef2ff;
  color: #4f46e5;
  font-weight: 600;
  font-size: 14px;
}

.account-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ced8f7;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}

.account-avatar i {
  font-size: 70px;
  color: #4f46e5;
}

.account-stat {
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: 16px;
  transition: .3s;
  border: 1px solid #f1f1f1;

}

.account-stat:hover {
  transform: translateY(-5px);
}

.account-stat .icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;

}

.account-stat h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.account-stat span {
  color: #64748b;
  font-size: 15px;
}

.blue {
  background: #4f46e5;
}

.orange {
  background: #f59e0b;
}

.green {
  background: #22c55e;
}

.pink {
  background: #ec4899;
}

@media(max-width:991px) {

  .account-avatar {
    margin: auto;
  }

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

}

/* order-tabs */
.order-tabs {
  gap: 12px;
  flex-wrap: wrap;
}

.order-tabs .nav-link {
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  color: #64748B;
  background: #fff;
  padding: 4px 22px;
  font-weight: 500;
  transition: .3s;
  font-size: 14px;
}

.order-tabs .nav-link.active {
  background: #0c217b;
  color: #fff;
  border-color: #0c217b;
}

.order-card {
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 15px;
  transition: .3s;
}

.order-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.order-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #E5E7EB;
}

.status {
  padding: 2px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.delivered {
  background: #DCFCE7;
  color: #16A34A;
}

.processing {
  background: #DBEAFE;
  color: #2563EB;
}

.shipped {
  background: #E0E7FF;
  color: #4F46E5;
}

.cancelled {
  background: #FEE2E2;
  color: #DC2626;
}

/* .current {
  background: #FEF3C7;
  color: #D97706;
} */

@media(max-width:768px) {

  .order-top {
    display: block;
  }

  .status {
    display: inline-block;
    margin-top: 12px;
  }

  .order-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
  }

}

/*=========================
                                                                                                                        Saved Address
                                                                                                                        ==========================*/

.address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.address-card {
  border: 1px solid #e9ecef;
  border-radius: 12px;
  background: #fff;
  padding: 25px;
  transition: .35s;
  position: relative;
  height: 100%;
}

.address-card:hover {
  border-color: #0c217b;
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.address-type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0px 14px;
  background: #eef3ff;
  color: #0c217b;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.default-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #198754;
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 30px;
}

.address-name {
  font-size: 18px;
  font-weight: 600;
  margin: 18px 0 10px;
}

.address-info {
  color: #6b7280;
  line-height: 28px;
}

.address-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.address-actions .btn {
  border-radius: 8px;
  font-size: 14px;
}

.add-address-box {
  border: 2px dashed #ced4da;
  border-radius: 12px;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  transition: .3s;
  padding: 20px 0px;
  color: #0c217b;
}

.add-address-box:hover {
  background: #f8f9ff;
  border-color: #0c217b;
}

.add-address-box i {
  font-size: 42px;
  margin-bottom: 15px;
}

@media(max-width:767px) {

  .address-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .default-badge {
    position: static;
    display: inline-block;
    margin-top: 15px;
  }

}


/* -- Shared section header (icon + title + subtitle) -- */
.profile-section-head {
  display: flex;
  align-items: center;

  padding-bottom: 20px;
  margin-bottom: 14px;
  border-bottom: 1px solid #E5E7EB;
}

.profile-section-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #0c217b;
  flex-shrink: 0;
}

/* -- Field label (reuses cx_text weight but adds block + margin) -- */
.profile-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.profile-label .lbl-optional {
  font-weight: 400;
  color: #9CA3AF;
  font-size: 12px;
}

/* -- Sub-divider inside form -- */
.profile-divider {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #9CA3AF;
  border-bottom: 1px solid #F3F4F6;
  padding-bottom: 7px;
  margin-bottom: 2px;
}

/* -- Avatar upload block -- */
.profile-avatar-wrap {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px;
  border: 2px dashed #ced4da;
  border-radius: 12px;
  background: #f9fafb;
  transition: border-color .25s, background .25s;
  cursor: pointer;
}

.profile-avatar-wrap:hover {
  border-color: #0c217b;
  background: #f3f5ff;
}

.profile-avatar-thumb {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ced8f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: #0c217b;
  flex-shrink: 0;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #c7d2fe;
}

.profile-avatar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-avatar-note {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.65;
  margin: 6px 0 0;
}

/* -- Gender radio pills -- */
.profile-gender-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.profile-gender-group input[type="radio"] {
  display: none;
}

.profile-gender-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
  background: #fff;
}

.profile-gender-group input[type="radio"]:checked+.profile-gender-pill {
  border-color: #0c217b;
  background: #eef2ff;
  color: #0c217b;
}

.profile-gender-pill:hover {
  border-color: #0c217b;
}

/* -- Password field wrapper (eye icon) -- */
.profile-pw-wrap {
  position: relative;
}

.profile-pw-wrap .form-control {
  padding-right: 44px;
}

.profile-pw-eye {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  font-size: 17px;
  color: #9CA3AF;
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}

.profile-pw-eye:hover {
  color: #0c217b;
}

/* -- Strength bar -- */
.profile-strength-bar {
  display: flex;
  gap: 5px;
  margin-top: 8px;
}

.profile-strength-seg {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: #E5E7EB;
  transition: background .3s;
}

.profile-strength-seg.s-weak {
  background: #EF4444;
}

.profile-strength-seg.s-fair {
  background: #F59E0B;
}

.profile-strength-seg.s-good {
  background: #3B82F6;
}

.profile-strength-seg.s-strong {
  background: #22C55E;
}

.profile-strength-text {
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
  min-height: 16px;
}

.profile-strength-text.s-weak {
  color: #EF4444;
}

.profile-strength-text.s-fair {
  color: #F59E0B;
}

.profile-strength-text.s-good {
  color: #3B82F6;
}

.profile-strength-text.s-strong {
  color: #22C55E;
}

/* -- Requirements box -- */
.profile-pw-reqs {
  background: #F9FAFB;
  border: 1px solid #F0F0F0;
  border-radius: 10px;
  padding: 14px 16px;
}

.profile-pw-reqs p {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #374151;
  margin: 0 0 10px;
}

.profile-req-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 6px;
  transition: color .2s;
}

.profile-req-row:last-child {
  margin-bottom: 0;
}

.profile-req-row i {
  font-size: 14px;
  color: #D1D5DB;
  flex-shrink: 0;
  transition: color .2s;
}

.profile-req-row.req-met {
  color: #16A34A;
}

.profile-req-row.req-met i {
  color: #22C55E;
}

/* -- Security tip banner -- */
.profile-tip {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 15px;
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  border-radius: 10px;
  font-size: 13px;
  color: #92400E;
  line-height: 1.55;
}

.profile-tip i {
  font-size: 17px;
  color: #F59E0B;
  flex-shrink: 0;
  margin-top: 1px;
}

/* -- Confirm match message -- */
.profile-confirm-msg {
  font-size: 12px;
  margin-top: 5px;
  min-height: 16px;
  font-weight: 600;
}

/* -- Responsive -- */
@media (max-width: 767px) {
  .profile-avatar-wrap {
    flex-direction: column;
    text-align: center;
  }

  .profile-avatar-thumb {
    margin: 0 auto;
  }
}

/* support-topic-grid */
.support-topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.support-topic-card {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 20px 16px;
  cursor: pointer;
  transition: border-color .25s, box-shadow .25s, transform .2s;
  background: #fff;
  text-align: left;
}

.support-topic-card:hover {
  border-color: #0c217b;
  box-shadow: 0 8px 24px rgba(12, 33, 123, .08);
  transform: translateY(-3px);
}

.support-topic-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}

.support-topic-icon.blue {
  background: #eef2ff;
  color: #0c217b;
}

.support-topic-icon.orange {
  background: #fff7ed;
  color: #D97706;
}

.support-topic-icon.green {
  background: #f0fdf4;
  color: #16A34A;
}

.support-topic-icon.purple {
  background: #fdf4ff;
  color: #9333EA;
}

.support-topic-icon.red {
  background: #fef2f2;
  color: #DC2626;
}

.support-topic-icon.teal {
  background: #f0fdfa;
  color: #0d9488;
}

.support-topic-title {
  font-size: 15px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 3px;
}

.support-topic-sub {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.5;
}

.support-form-card {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 22px;
  background: #fff;
  margin-bottom: 16px;
}

.support-form-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.support-form-title i {
  color: #0c217b;
  font-size: 17px;
}

.support-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.support-contact-card {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  text-decoration: none;
}

.support-contact-card:hover {
  border-color: #0c217b;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
  text-decoration: none;
}

.support-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}

.support-contact-icon.blue {
  background: #eef2ff;
  color: #0c217b;
}

.support-contact-icon.green {
  background: #f0fdf4;
  color: #16A34A;
}

.support-contact-icon.orange {
  background: #fff7ed;
  color: #D97706;
}

.support-contact-label {
  font-size: 15px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 2px;
}

.support-contact-sub {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.5;
}

.support-faq-wrap {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.support-faq-head {
  padding: 16px 20px;
  border-bottom: 1px solid #F3F4F6;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
}

.support-faq-head i {
  color: #0c217b;
  font-size: 17px;
}

.support-faq-item {
  border-bottom: 1px solid #F3F4F6;
}

.support-faq-item:last-child {
  border-bottom: none;
}

.support-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color .2s;
}

.support-faq-q:hover {
  color: #0c217b;
}

.support-faq-q i {
  font-size: 16px;
  flex-shrink: 0;
  transition: transform .25s;
  color: #9CA3AF;
}

.support-faq-q.open i {
  transform: rotate(180deg);
  color: #0c217b;
}

.support-faq-a {
  display: none;
  padding: 0 20px 14px;
  font-size: 13px;
  color: #6B7280;
  line-height: 1.7;
}

.support-faq-a.open {
  display: block;
}

.support-ticket-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 12px;
  flex-wrap: wrap;
}

.support-ticket-banner-text {
  font-size: 13px;
  color: #374151;
  line-height: 1.6;
}

.support-ticket-banner-text strong {
  display: block;
  font-size: 14px;
  color: #111827;
  margin-bottom: 2px;
}

@media (max-width: 767px) {
  .support-topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-contact-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.accordion-item {
  border: 1px solid #e9ecef !important;
  border-radius: 12px !important;
  overflow: hidden;
  background: #fff;
}

.accordion-button {
  font-size: 15px;
  font-weight: 600;
  color: #212529;
  background: #fff;
  box-shadow: none !important;
  padding: 16px 20px;
}

.accordion-button:not(.collapsed) {
  background: #f8f9fa;
  color: #281e74;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.8;
  padding: 18px 20px;
}

/* Toast Container */
#toast-container {
  top: 20px;
  right: 20px;
}

/* Common Toast Style */
#toast-container>.toast {
  width: 340px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
  padding: 14px 16px 14px 50px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
  opacity: 1;
  color: #fff;
  border: none;
  background-image: none !important;
  position: relative;
}

.toast-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

/* Success — site navy, matches header/login button */
.toast-success {
  background: #0a1155;
}

/* Error — flat red, matches your Login button exactly */
.toast-error {
  background: #e60000;
}

/* Warning — amber, kept flat to match the new solid style */
.toast-warning {
  background: #d97706;
}

/* Info — teal, flat, quieter than success/error */
.toast-info {
  background: #0f766e;
}

/* Icons */
/* .toast-success:before,
.toast-error:before,
.toast-warning:before,
.toast-info:before {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
}

.toast-success:before {
  content: "\f00c";
}

.toast-error:before {
  content: "\f00d";
}

.toast-warning:before {
  content: "\f071";
}

.toast-info:before {
  content: "\f129";
} */

/* Close Button */
#toast-container .toast-close-button {
  color: #fff;
  opacity: .85;
  font-size: 16px;
  font-weight: 400;
  text-shadow: none;
}

#toast-container .toast-close-button:hover {
  opacity: 1;
}

/* Progress Bar */
#toast-container .toast-progress {
  background: #fff;
  opacity: .3;
  height: 3px;
}

input[readonly],
textarea[readonly] {
  background-color: #f5f5f5;
  color: #6c757d;
  cursor: not-allowed;
  border-color: #dee2e6;
}

.checkout-card {
  border: none;
  border-radius: 6px;
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  padding: 4px 10px;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, .05); */
}

.address-card {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  cursor: pointer;
  transition: .3s;
}

.address-card:hover {
  border-color: #0c217b;
}

.product-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}

.place-order-btn {
  height: 55px;
  font-size: 18px;
  font-weight: 600;
}

.sticky-summary {
  position: sticky;
  top: 20px;
}




.pagination_style1 .page-link {
  color: #142b87;
  border: 1px solid #e5e5e5;
  background: #fff;
  border-radius: 6px;
  margin: 0 3px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.pagination_style1 .page-item.active .page-link {
  background: #142b87;
  border-color: #142b87;
  color: #fff;
}

.pagination_style1 .page-link:hover {
  background: #142b87;
  border-color: #142b87;
  color: #fff;
}

.pagination_style1 .page-item.disabled .page-link {
  color: #999;
  background: #f8f8f8;
  border-color: #e5e5e5;
}

.pagination_style1 {
  gap: 3px;
}



.xc-header-one__search {
  position: relative;
}

.search-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  min-width: 450px;
  background: #151d2d;
  border: 1px solid #293347;
  border-radius: 12px;
  overflow: hidden;
  z-index: 9999;
  display: none;
}

.search-product {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 15px;
  text-decoration: none;
}

.search-product:hover {
  background: #1d2638;
}

.search-product img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
}

.search-product h6 {
  margin: 0 0 4px;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
}

.search-product p {
  margin: 0;
  color: #9ca6b7;
  font-size: 13px;
}

.search-all,
.search-no-result {
  display: block;
  padding: 14px;
  text-align: center;
  border-top: 1px solid #293347;
  color: #72aaff;
  text-decoration: none;
  font-size: 14px;
}

.search-no-result {
  color: #9ca6b7;
}


.search-skeleton__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
}

.search-skeleton__img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  flex-shrink: 0;
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.2s ease-in-out infinite;
}

.search-skeleton__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-skeleton__line {
  height: 10px;
  border-radius: 4px;
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.2s ease-in-out infinite;
}

.search-skeleton__line--title {
  width: 70%;
}

.search-skeleton__line--price {
  width: 40%;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }

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


.pd-extended-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 18px;
  padding: 6px 14px;
  background: #EAF9EF;
  border: 1px solid #D3EFDD;
  border-radius: 8px;
  color: #0F7A38;
  font-size: 13px;
  font-weight: 600;
}

.pd-extended-price i {
  font-size: 16px;
  color: #16A34A;
}

.pd-extended-price strong {
  color: #16A34A;
  font-weight: 700;
}



/* WHATSAPP FLOATING ICON  */

.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 25px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float svg {
  color: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 18px;
    right: 18px;
  }
}


/* END WHATSAPP FLOATING ICON  */

/* HOME PAGE  */

:root {
  --bg: #0c217b;
  --panel: #FFFFFF;
  --primary: #2F5EFF;
  --ink: #1A1F36;
  --muted: #6B7280;
  --line: #5e5e5e;
}


.xol-00-hero {
  background: #0e2041;
  position: relative;
}



.xol-00-item {
  height: 560px;
  display: flex;
  align-items: center;
}

.xol-00-item .container {
  width: 100%;
}



.xol-00-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.xol-00-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 55px;
  margin-bottom: 10px;
  color: #fff;
}

.xol-00-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #d4d4d4;
  margin-bottom: 28px;
}

.swiftcart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 6px;
  transition: background .2s ease;
}

.swiftcart-btn:hover {
  background: #1E46D9;
}



.xol-00-image {
  width: 100%;
  max-height: 400px;
  height: 100%;

}

.xol-00-image img {
  width: 100%;
  height: 100%;


  object-fit: cover;
}

.xol-00-image img:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 46px -18px rgba(26, 31, 54, 0.24);
}

.xol-00-banner {
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.banner-copy {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

.banner-copy span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

/* ---- Owl Carousel overrides ---- */
.xol-00-slider .owl-stage-outer {
  border-radius: 0;
}

.xol-00-slider .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  border-radius: 99px;
  z-index: 5;
}

.xol-00-slider .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0;
  background: var(--line);
  border-radius: 50%;
  display: block;
  transition: background .2s ease, width .2s ease;
}

.xol-00-slider .owl-dot:hover span {
  background: #C7D1FF;
}

.xol-00-slider .owl-dot.active span {
  background: var(--primary);
  width: 22px;
  border-radius: 4px;
}

.xol-00-slider .owl-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.xol-00-slider .owl-nav button.owl-prev,
.xol-00-slider .owl-nav button.owl-next {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 16px;
  line-height: 1;
  transition: background .2s ease, box-shadow .2s ease;
  margin: 0;
}

.xol-00-slider .owl-nav button.owl-prev:hover,
.xol-00-slider .owl-nav button.owl-next:hover {
  background: #fff;
  box-shadow: 0 6px 16px rgba(26, 31, 54, 0.12);
}

.xol-00-slider .owl-nav button.owl-prev {
  left: 20px;
}

.xol-00-slider .owl-nav button.owl-next {
  right: 20px;
}

@media (max-width:900px) {
  .col-lg-6 {
    width: 100%;
  }

  .xol-00-item {
    height: auto;
    padding: 50px 0;
    text-align: center;
  }

  .xol-00-content {
    margin: 0 auto 32px;
  }

  .xol-00-content h2 {
    font-size: 28px;
  }

  .xol-00-banner {
    height: 280px;
  }

  .banner-copy {
    font-size: 19px;
  }

  .xol-00-slider .owl-nav {
    display: none;
  }
}

.gaming-banner {
  /* height: 500px; */
  /*                                                                                         overflow: hidden; */
  padding: 40px 0px;
  position: relative;
  /* background: linear-gradient(150deg, var(--bg-1) 0%, var(--bg-2) 55%, var(--bg-3) 100%); */
  background: #0e2041;
  /* border-radius: 20px; */
}

.lb-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .35;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 30% 50%, #3f3f3f 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 90% at 30% 50%, #000 30%, transparent 75%);
}



.banner-content {
  color: #fff;
  position: relative;
  z-index: 2;
}

.banner-content .sub-title {
  color: #ff2d55;
  font-size: 20px;
  display: block;
  margin-bottom: 10px;

}

.banner-content h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 15px;
}

.banner-content p {
  color: rgba(255, 255, 255, .8);
  font-size: 15px;
  margin-bottom: 35px;
}

.banner-btn {
  background: #ff2d55;
  color: #fff;
  text-decoration: none;
  padding: 10px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  transition: .3s;
  margin-bottom: 30px;
}

.banner-btn:hover {
  background: #ff1744;
  color: #fff;
}

.banner-slider-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 70px;
}

.banner-slider {
  width: 100%;
}

.banner-slider .item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-slider img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, .35));

  transform: scale(.92);
  transition: 1s;
}

.banner-slider .owl-item.active img {
  transform: scale(1);
}

/* Hide Nav */

.banner-slider .owl-nav {
  display: none;
}

/* Left Vertical Dots */

.banner-slider .owl-dots {

  position: absolute;
  right: 0px;
  top: 50%;

  transform: translateY(-50%);

  display: flex;
  flex-direction: column;

  gap: 12px;
}

.banner-slider .owl-dot {
  margin: 0 !important;
}

.banner-slider .owl-dot span {

  width: 10px;
  height: 10px;

  display: block;

  border-radius: 50%;

  background: rgba(255, 255, 255, .35) !important;

  transition: .35s;
}

/* Active Dot */

.banner-slider .owl-dot.active span {

  width: 10px;
  height: 42px;

  border-radius: 20px;

  background: #ff2d55 !important;
}



/* HEADER  */

.xol-topbar {
  background: #0d1b39;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 4px 0;
}



.xol-top-left,
.xol-top-center,
.xol-top-right {

  display: flex;

  align-items: center;
}

.xol-top-left {

  gap: 22px;

}

.xol-top-center {

  justify-content: center;

  color: #fff;

  gap: 10px;

}

.xol-top-center i {

  color: #ff2d55;

  font-size: 16px;

}

.xol-top-right {

  justify-content: flex-end;

  gap: 18px;

}

.xol-topbar a {

  color: #fff;

  text-decoration: none;

  display: flex;

  align-items: center;

  gap: 8px;

  transition: .35s;

}

.xol-topbar a:hover {

  color: #ff2d55;

}

.xol-topbar i {

  color: #ff2d55;

  font-size: 14px;

}

.xol-divider {

  width: 1px;

  height: 16px;

  background: rgba(255, 255, 255, .18);

}

/* Responsive */

@media(max-width:991px) {

  .xol-topbar {

    display: none;

  }
}

/* END HEADER */

/* ORDER DETAILS  */

.card {
  border: none;
  border-radius: 6px;
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  /* box-shadow: 0 2px 12px rgba(0, 0, 0, .05); */
}

.timeline-step {
  position: relative;
  text-align: center;
}

.timeline-step:after {
  content: '';
  position: absolute;
  top: 20px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: #dee2e6;
  z-index: 0;
}

.timeline-step:last-child:after {
  display: none;
}

.tracking_title {
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
  display: inline-block;
}

.timeline-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: relative;
  z-index: 1;
  background: #eeeeee;
  color: #0c217b;
}

.timeline-icon i {
  font-size: 22px;
}

.completed {
  background: #0c217b;
  color: #fff;
}

/* .current {
  background: #0d6efd;
  color: #fff;
} */

.pending {
  background: #e9ecef;
  color: #6c757d;
}

.product-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.activity-item {
  border-left: 2px solid #dee2e6;
  padding-left: 15px;
  margin-left: 8px;
  margin-bottom: 20px;
}

.sticky-summary {
  position: sticky;
  top: 20px;
}



.custom_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
}

.custom_table thead th {
  background: #f8f9fb;
  color: #222;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 20px;
  border-bottom: 1px solid #e9ecef;
  white-space: nowrap;
}

.custom_table tbody td {
  padding: 10px 20px;
  vertical-align: middle;
  border-bottom: 1px solid #f1f3f5;
  font-size: 15px;
  color: #555;
}

.custom_table tbody tr:last-child td {
  border-bottom: none;
}

.custom_table tbody tr:hover {
  background: #fafafa;
  transition: .3s;
}

.custom_table .product-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  background: #fff;
}

.custom_table td:first-child {
  font-weight: 600;
  color: #222;
}

.custom_table td:nth-child(3),
.custom_table td:nth-child(4),
.custom_table td:nth-child(5) {
  font-weight: 600;
}

.invoice_container {
  display: flex;
  justify-content: end;
  gap: 10px;
}

/* END ORDER DETAILS  */


/* END CHECKOUT */


/* CART PAGE  */

.xc-cart-card {
  border-radius: 6px;
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  padding: 20px;

}

.xc-product-img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 10px;
}

.xc-brand {
  font-size: 12px;
  color: #0c217b;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  display: block;
}

.xc-product-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
}

.xc-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.xc-specs span {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0px 8px;
  font-size: 12px;
  font-weight: 500;
}

.xc-price {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.xc-price del {
  font-size: 13px;
  font-weight: 400;
  color: #888;
  margin-left: 6px;
}

.xc-discount-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #198754;
  margin-left: 6px;
}

.xc-remove {
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 6px;
  background: #f5f5f5;
  font-size: 14px;
}

.xc-remove:hover {
  background: #000;
  color: #fff;
}

.xc-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 50px;
  overflow: hidden;
  height: 35px;
}

.xc-qty button {
  width: 38px;
  height: 38px;
  border: none;
  background: #fff;
  font-size: 18px;
  font-weight: 600;
}

.xc-qty input {
  width: 40px;
  border: none;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

/* Summary */
.xc-checkout-btn {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 15px;
  font-size: 14px;
}

.xc-checkout-btn:hover {
  background: #111;
}

.xc-feature {
  border-radius: 8px;
  padding: 2px 15px;
  margin-top: 12px;
  font-size: 13px;
}

.xc-green {
  background: #eaf8ef;
  color: #198754;
}

.xc-blue {
  background: #eef4ff;
  color: #0d6efd;
}

.xc-yellow {
  background: #fff8e5;
  color: #a96b00;
}

.xc-cart-empty {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 50px;
  margin-bottom: 100px;
}

.xc-cart-empty img {
  width: 300px;
  height: auto;
}

.xc-warranty-free {
  background: var(--bg-success, #eaf8ef);
  color: #198754;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  margin-top: 10px;
}

.xc-warranty-addon {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #eaf8ef;
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 10px;
}

.xc-warranty-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #198754;
  flex-shrink: 0;
}

.xc-warranty-text {
  flex: 1;
  min-width: 0;
}

.xc-warranty-text strong {
  display: block;
  font-size: 13px;
}

.xc-warranty-text p {
  font-size: 12px;
  color: #6c757d;
  margin: 2px 0 0;
}

.xc-warranty-price {
  font-size: 14px;
  font-weight: 600;
  color: #198754;
  white-space: nowrap;
}

.xc-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.xc-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.xc-switch-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #ccc;
  border-radius: 22px;
  transition: 0.2s;
}

.xc-switch-slider:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s;
}

.xc-switch input:checked+.xc-switch-slider {
  background: #198754;
}

.xc-switch input:checked+.xc-switch-slider:before {
  transform: translateX(18px);
}



/* END CART PAGE */

/* PRODUCT DETAILS */

.product__details-wrapper {
  width: 100%;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
}

.xc-pd-stock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.xc-pd-badge-low {
  background: #d9534f;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
}

.product__details-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.35;
  margin: 6px 0 10px;
}

.xc-pd-loved {
  color: #7a2ea6;
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 10px;
}

.xc-pd-urgency {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: #444;
  margin-bottom: 16px;
}

.xc-pd-urgency span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.xc-pd-urgency i {
  color: #7a2ea6;
}

.product__details-price {
  margin-bottom: 2px;
}

.product__details-ammount {
  font-size: 26px;
  font-weight: 700;
  color: #2c0a63;
}

.xc-pd-tax-note {
  font-size: 12px;
  color: #888;
  margin: 0 0 14px;
}

.product__details-rating {
  margin-bottom: 14px;
}

.product__rating i {
  color: #f4c150;
  font-size: 15px;
  margin-right: 2px;
}

.product__rating i.xc-star-off {
  color: #e2e2e2;
}

.product__details-rating-count {
  margin-left: 8px;
  font-size: 13px;
  color: #888;
}

.xc-pd-variant {
  margin-bottom: 20px;
}

.xc-pd-variant-label {
  font-weight: 600;
  color: #2c0a63;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.xc-pd-variant-label i {
  font-size: 12px;
  color: #9a7bb5;
  cursor: help;
}

.xc-pd-variant-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.xc-pd-variant-btn {
  padding: 4px 20px;
  border-radius: 8px;
  border: 1px solid #e4d6ec;
  background: #ffffff;
  color: #2c0a63;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: .2s;
}

.xc-pd-variant-btn:hover {
  border-color: #0c217b;
}

.xc-pd-variant-btn.active {
  background: #0c217b;
  color: #fff;
  border-color: #0c217b;
}

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

.xc-product-quantity {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.xc-cart-minus,
.xc-cart-plus {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  /* background: #f6edf8; */
  color: #2c0a63;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.xc-cart-input {
  width: 40px;
  text-align: center;
  border: none;
  font-size: 15px;
  font-weight: 600;
}

.product__details-action {
  gap: 14px;
  margin-bottom: 22px;
}

.product-add-cart-btn {
  background: #f6edf8;
  color: #2c0a63;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 26px;
  border-radius: 10px;
}

.swiftcart-btn-buynow {
  background: #2c0a63;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 26px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product__details-more {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;
}

.product__details-more p {
  margin: 0;
  font-weight: 600;
  color: #1a1a2e;
}

.product__details-more a {
  color: #7a2ea6;
  text-decoration: none;
}

.product__details-tags {
  font-size: 13px;
  margin-bottom: 16px;
}

.product__details-tags span {
  font-weight: 600;
  color: #1a1a2e;
  margin-right: 6px;
}

.product__details-tags a {
  color: #2c0a63;
  text-decoration: none;
  background: #f6edf8;
  padding: 4px 10px;
  border-radius: 6px;
  margin-right: 6px;
  font-size: 12px;
}

.product__details-share {
  font-size: 13px;
  margin-bottom: 0;
}

.product__details-share span {
  font-weight: 600;
  color: #1a1a2e;
  margin-right: 8px;
}

.product__details-share a {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f6edf8;
  color: #2c0a63;
  margin-right: 6px;
  text-decoration: none;
  font-size: 13px;
}

.xc-pd-trust-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  text-align: center;
  margin: 28px 0 22px;
  padding-top: 24px;
  /* border-top: 1px solid #eee; */
}

.xc-pd-trust-item {
  flex: 1;
}

.xc-pd-trust-item i {
  width: 46px;
  height: 46px;
  line-height: 42px;
  border: 2px solid #b8298f;
  border-radius: 50%;
  color: #b8298f;
  font-size: 17px;
  margin-bottom: 8px;
  display: inline-block;
}

.xc-pd-trust-item span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #2c0a63;
}

.xc-pd-cod {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e9f7ef;
  color: #1e7e34;
  font-weight: 600;
  font-size: 13px;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 18px;
}

.xc-pd-cod i {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.xc-pd-cod a {
  color: #1e7e34;
  text-decoration: underline;
}

.xc-pd-delivery p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #2c0a63;
  margin: 8px 0;
}

.row-sticky-scroll {
  display: flex;
  align-items: flex-start;

}

.left-fixed {
  position: sticky;
  top: 100px;

}

.right-scroll {
  flex: 1;
  background-color: #ffffff;
  border: 1px solid #f0f0f0;

}

/* thin scrollbar (optional) */
.right-scroll::-webkit-scrollbar {
  width: 6px;
}

.right-scroll::-webkit-scrollbar-thumb {
  background: #e4d6ec;
  border-radius: 6px;
}

.right-scroll::-webkit-scrollbar-track {
  background: transparent;
}

@media (max-width: 991px) {
  .left-fixed {
    position: static;
  }

  .right-scroll {
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
    padding: 0;
    border-radius: 0;
  }

  .product__details-wrapper {
    border-radius: 0;
  }
}

.pd-warranty-included {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #EAF9EF;
  color: #0F7A38;
  font-weight: 600;
  font-size: 13.5px;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 14px;
}

.pd-warranty-included i {
  color: #16A34A;
}

.pd-warranty-card {
  background: #EAF9EF;
  border-radius: 12px;
  border: 1px solid #D3EFDD;
  box-shadow: 0 2px 10px rgba(20, 22, 43, 0.04);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.pd-warranty-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16A34A;
  font-size: 20px;
  flex-shrink: 0;
}

.pd-warranty-title {
  font-weight: 700;
  font-size: 14.5px;
  color: #14162B;
  margin-bottom: 2px;
  font-family: 'Manrope', sans-serif;
}

.pd-warranty-desc {
  font-size: 12.5px;
  color: #6B7280;
  line-height: 1.4;
}

.pd-warranty-price {
  font-weight: 800;
  color: #0F7A38;
  font-size: 16px;
  white-space: nowrap;
  margin: 0 6px;
}

/* toggle switch */
.pd-toggle {
  position: relative;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
}

.pd-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pd-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #D1D5DB;
  border-radius: 999px;
  transition: .2s;
}

.pd-toggle-slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.pd-toggle input:checked+.pd-toggle-slider {
  background: #16A34A;
}

.pd-toggle input:checked+.pd-toggle-slider::before {
  transform: translateX(20px);
}

.product__details-price {
  margin-bottom: 4px;
}

.product__details-ammount {
  font-size: 30px;
  font-weight: 600;
  color: #0c217b;
  letter-spacing: -0.02em;
}

.pd-mrp {
  color: #6B7280;
  font-size: 15px;
}

.pd-discount-pill {
  background: #FEE2E2;
  color: #DC2626;
  font-weight: 600;
  font-size: 13px;
  padding: 1px 12px;
  border-radius: 999px;
}

.xc-pd-tax-note {
  font-size: 13px;
  color: #6B7280;
  margin: 6px 0 22px;
}

.pd-divider {
  border-top: 1px solid #E7E9F1;
  margin: 22px 0;
}


.pd-btn {
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid transparent;
  transition: .18s;
  cursor: pointer;
}

.pd-btn-primary {
  background: #0c217b;
  color: #fff;
  flex: 1 1 auto;
}

.pd-btn-primary:hover {
  background: #142A63;
  color: #fff;
}

.pd-btn-secondary {
  background: #fff;
  color: #1E3A8A;
  border-color: #1E3A8A;
  flex: 1 1 auto;
}

.pd-btn-secondary:hover {
  background: #EEF2FB;
  color: #1E3A8A;
}

.pd-btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.pd-btn-whatsapp:hover {
  background: #1EBE59;
  border-color: #1EBE59;
  color: #fff;
}

/* Delivery card */
.pd-delivery-card {
  background: #EEF2FB;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 22px 0;
}

.pd-delivery-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pd-delivery-item+.pd-delivery-item {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #DCE3F5;
}

.pd-delivery-item i {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  color: #1E3A8A;
  font-size: 13px;
}

.pd-delivery-title {
  font-size: 16px;
  font-weight: 600;
  color: #14162B;
  margin: 0px !important;
}

.pd-delivery-sub {
  font-size: 14px;
  color: #6B7280;

}

/* Meta list (SKU / Categories) */
.pd-meta-list {
  margin-bottom: 5px;
}

.pd-meta-row {
  display: flex;
  gap: 8px;
  font-size: 13px;
  padding: 6px 0;
}

.pd-meta-label {
  font-weight: 600;
  color: #14162B;
  min-width: 90px;
  flex-shrink: 0;
}

.pd-meta-value {
  color: #6B7280;
}

.pd-meta-value a {
  color: #1E3A8A;
  text-decoration: none;
}

.pd-meta-value a:hover {
  text-decoration: underline;
}

/* Tags */
.pd-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.pd-tags-label {
  font-weight: 700;
  font-size: 14px;
  color: #14162B;
  margin-right: 4px;
}

.pd-tag {
  background: #EEF2FB;
  color: #1E3A8A;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 1px 12px;
  border-radius: 999px;
  transition: .15s;
}

.pd-tag:hover {
  background: #1E3A8A;
  color: #fff;
}

/* Share */
.pd-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pd-share-label {
  font-weight: 700;
  font-size: 13px;
  color: #14162B;
  margin-right: 2px;
}

.pd-share-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #EEF2FB;
  color: #1E3A8A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: .15s;
}

.pd-share-icon:hover {
  background: #1E3A8A;
  color: #fff;
}

.pd-extended-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 18px;
  padding: 10px 14px;
  background: #EAF9EF;
  border: 1px solid #D3EFDD;
  border-radius: 8px;
  color: #0F7A38;
  font-size: 14px;
  font-weight: 600;
}

.pd-extended-price i {
  font-size: 16px;
  color: #16A34A;
}

.pd-extended-price strong {
  color: #16A34A;
  font-weight: 700;
}

/* =========================================================
            PCS Product Description — Common CSS (plain, safe, scoped)
            ========================================================= */



.pcs-desc {
  color: #374151;
  font-size: 15.5px;
  line-height: 1.75;
  font-family: inherit;
  word-wrap: break-word;
}

/* ---- Headings ---- */
.pcs-desc h1 {
  font-size: 26px;
  font-weight: 800;
  color: #16215c;
  margin: 20px 0 14px;
  border-bottom: 2px solid #084298;

}

.pcs-desc h2 {
  font-size: 22px;
  font-weight: 700;
  color: #16215c;
  margin: 20px 0 14px;

}

.pcs-desc h3 {
  font-size: 18px;
  font-weight: 700;
  color: #16215c;
  margin: 18px 0 12px;
  display: inline-block;
  border-bottom: 3px solid #16215c;
}

.pcs-desc h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin: 16px 0 10px;
  display: inline-block;
  border-bottom: 3px solid #16215c;
}

.pcs-desc h5 {
  font-size: 14.5px;
  font-weight: 700;
  color: #374151;
  margin: 14px 0 8px;
  display: inline-block;
  border-bottom: 3px solid #16215c;
}

.pcs-desc h6 {
  font-size: 13.5px;
  font-weight: 700;
  color: #6b7280;
  margin: 12px 0 8px;
  display: inline-block;
  border-bottom: 3px solid #16215c;
}

/* ---- Paragraph ---- */
.pcs-desc p {
  margin: 0 0 10px;
  font-size: 15px;
  color: #374151;
  line-height: 24px;
}

/* ---- Bold / strong ---- */
.pcs-desc strong,
.pcs-desc b {
  font-weight: 700;
  color: #111827;
}

/* ---- Span ---- */
.pcs-desc span {
  color: inherit;
  font-size: inherit;
}

/* ---- Unordered list ---- */
.pcs-desc ul {
  margin: 0 0 14px;
  padding-left: 22px;
  list-style: disc;
}

.pcs-desc ul li {
  margin-bottom: 8px;
  font-size: 14.5px;
  color: #374151;
}

/* ---- Ordered list ---- */
.pcs-desc ol {
  margin: 0 0 14px;
  padding-left: 22px;
  list-style: decimal;
}

.pcs-desc ol li {
  margin-bottom: 8px;
  font-size: 14.5px;
  color: #374151;
}

/* ---- Table ---- */
.pcs-desc table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 16px;
  font-size: 14px;
}

.pcs-desc table th,
.pcs-desc table td {
  border: 1px solid #e5e7eb;
  padding: 10px 14px;
  text-align: left;
  color: #374151;
}

.pcs-desc table th {
  background: #f9fafb;
  font-weight: 700;
  color: #16215c;
}

/* No CSS custom properties anywhere below — every color,
                spacing and radius value is written out literally.
                Dynamic star/bar fills use a plain inline "width" style
                instead of a --pct variable. */



.pcs-reviews2 * {
  box-sizing: border-box;
}

/* =========================================================
                STAR RATING — a real filled layer sized with inline
                "width", stacked over a muted layer, no ::after/var needed.
                ========================================================= */
.stars {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 3px;
  color: #dcdfe6;
  white-space: nowrap;
  user-select: none;
}

.stars .stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: #f59e0b;
  white-space: nowrap;
}

.rating-score .stars {
  font-size: 16px;
  margin-bottom: .5rem;
}

/* =========================================================
                RATING SUMMARY
                ========================================================= */
.rating-title {
  font-size: 20px;
  font-weight: 700;
  color: #16215c;
  letter-spacing: -0.2px;
  margin: 20px 0 15px;
}

.rating-summary {
  display: flex;
  flex-wrap: wrap;
  background: #fbfbfd;
  border: 1px solid #e8e9ee;
  border-radius: 14px;
  padding: 2rem 1.75rem;
  margin-bottom: 1.50rem;
}

.rating-score {
  text-align: center;
  min-width: 200px;
  padding-right: 1.75rem;
  border-right: 1px solid #e8e9ee;
}

.rating-score strong {
  display: block;
  font-size: 46px;
  font-weight: 800;
  color: #16215c;
  line-height: 1;
  margin-bottom: .5rem;
}

.rating-score span {
  display: block;
  font-size: 15px;
  color: #8a8fa3;
}

.rating-bars {
  flex: 1;
  min-width: 240px;
  padding-left: 1.75rem;
  list-style: none;
  margin: 0;
}

.rating-bars li {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.rating-bars li+li {
  margin-top: .5rem;
}

.rating-bars .label {
  width: 30px;
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 12.5px;
  font-weight: 600;
  color: #3d3f4d;
}

.rating-bars .label::after {
  content: "★";
  font-size: 10px;
  color: #f59e0b;
}

.rating-bars .track {
  flex: 1;
  height: 7px;
  background: #eceef3;
  border-radius: 999px;
  overflow: hidden;
}

.rating-bars .fill {
  display: block;
  height: 100%;
  background: #f59e0b;
  border-radius: 999px;
}

.rating-bars .count {
  width: 24px;
  text-align: right;
  font-size: 12px;
  color: #8a8fa3;
}

/* =========================================================
                REVIEW LIST
                ========================================================= */
.review-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}

.review {
  border: 1px solid #e8e9ee;
  border-radius: 12px;
  padding: 25px 20px;
  transition: border-color .15s ease;
}

.review:hover {
  border-color: #d3d6e2;
}

.review-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
}

.review-author {
  display: flex;
  align-items: center;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  background: #16215c;
}

.avatar[data-c="1"] {
  background: #16215c;
}

.avatar[data-c="2"] {
  background: #d8590f;
}

.avatar[data-c="3"] {
  background: #1a7f37;
}

.review-author-info {
  margin-left: .75rem;
}

.review-author-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1c29;
  margin: 0 0 3px;
}

.verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 600;
  color: #1a7f37;
  background: #e6f4ea;
  padding: 0px 8px;
  border-radius: 999px;
  line-height: 24px;
}

.review-date {
  font-size: 12.5px;
  color: #8a8fa3;
  white-space: nowrap;
}

.review .stars {
  margin: .75rem 0;
}

.review p {
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

/* =========================================================
                REVIEW FORM
                ========================================================= */
.review-form {
  background: #fbfbfd;
  border: 1px solid #e8e9ee;
  border-radius: 14px;
  padding: 2rem;
}

.review-form h3 {
  font-size: 19px;
  font-weight: 700;
  color: #16215c;
  margin: 0 0 6px;
}

.review-form>p {
  font-size: 13.5px;
  color: #8a8fa3;
  margin: 0 0 1.75rem;
}

.review-form fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 1.375rem;
}

.review-form legend {
  font-size: 13.5px;
  font-weight: 600;
  color: #16215c;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: .75rem;
  padding: 0;
}

.star-picker {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  width: max-content;
}

.star-picker input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.star-picker label {
  cursor: pointer;
  font-size: 22px;
  color: #dcdfe6;
  padding: 0 2px;
  transition: transform .1s ease, color .1s ease;
}

.star-picker label::before {
  content: "★";
}

.star-picker label:hover,
.star-picker label:hover~label,
.star-picker input:checked~label {
  color: #f59e0b;
}

.star-picker label:hover {
  transform: scale(1.15);
}

.star-picker input:focus-visible+label {
  outline: 2px solid #16215c;
  outline-offset: 2px;
  border-radius: 3px;
}

.field {
  margin-bottom: 1.375rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
  width: 100%;
  border: 1px solid #e8e9ee;
  background: #fff;
  border-radius: 8px;
  padding: 13px 16px;
  font: inherit;
  font-size: 14px;
  color: #3d3f4d;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.review-form textarea {
  min-height: 120px;
  resize: vertical;
}

.review-form input:focus-visible,
.review-form textarea:focus-visible {
  outline: none;
  border-color: #16215c;
  box-shadow: 0 0 0 3px rgba(22, 33, 92, .08);
}

.review-form ::placeholder {
  color: #8a8fa3;
}

.agree {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: 1.375rem;
}

.agree label {
  font-size: 13px;
  color: #8a8fa3;
}

.btn-submit {
  background: #16215c;
  color: #fff;
  border: none;
  padding: 6px 32px;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease;
}

.btn-submit:hover {
  background: #0f1740;
}

.btn-submit:focus-visible {
  outline: 2px solid #16215c;
  outline-offset: 2px;
}

/* =========================================================
                RESPONSIVE
                ========================================================= */
@media (max-width: 640px) {
  .rating-summary {
    flex-direction: column;
    align-items: stretch;
    padding: 1.75rem 1.375rem;
  }

  .rating-score {
    border-right: none;
    border-bottom: 1px solid #e8e9ee;
    padding: 0 0 1.375rem;
    margin-bottom: 1.375rem;
    width: 100%;
  }

  .rating-bars {
    padding-left: 0;
  }

  .review-form {
    padding: 1.75rem 1rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }
}


/* END PRODUCT DETAILS  */

/* #shopFilterCol{
 
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    max-width: 100%;
    max-height: 85vh;
    z-index: 1050;
    transform: translateY(100%);
    transition: transform .3s ease;
    padding: 0 !important;

}
  */
/* #shopFilterCol .is-open{
 transform: translateY(0);
} */



/* SHOP PAGE  */

.shop__sidebar.on-left {
  background: #fff;

  border-radius: 10px;
  border: 1px solid #f1f1f1;
}

.fitler-body {
  padding: 20px;
}

.col-fixed-right {
  position: sticky;
  top: 50px;
  align-self: flex-start;
}

/* ================= Filter widgets (new design) ================= */
.xc-filter-widget {
  border-bottom: 1px solid #f0f0f0;
  padding: 18px 0 0px;
}

.xc-filter-widget:first-child {
  padding-top: 0;
}

.xc-filter-widget:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.xc-filter-widget__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
  cursor: pointer;
  user-select: none;
  color: #0c217b;
}

.xc-filter-widget__title i {
  font-size: 12px;
  transition: transform .2s ease;
}

.xc-filter-widget.is-collapsed .xc-filter-widget__body {
  display: none;
}

.xc-filter-widget.is-collapsed .xc-filter-widget__title i {
  transform: rotate(-90deg);
}

/* category links */
.xc-filter-cat {
  list-style: none;
  margin: 0;
  padding: 0;
}

.xc-filter-cat li {
  margin-bottom: 6px;
}

.xc-filter-cat a {
  display: block;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 14px;
  color: #575757;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}

.xc-filter-cat a:hover {
  background: #f6f6f6;
}

.xc-filter-cat a.active {
  background: #111;
  color: #fff;
}

/* checkbox / swatch rows */
.xc-filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px !important;
  cursor: pointer;
  color: #575757;
}

.xc-filter-check input {
  width: 16px;
  height: 16px;
  accent-color: #111;
  cursor: pointer;
}

.xc-filter-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.xc-filter-swatch {
  position: relative;
}

.xc-filter-swatch input {
  position: absolute;
  opacity: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
  margin: 0;
}

.xc-filter-swatch span {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #e5e5e5;
}

.xc-filter-swatch input:checked+span {
  border-color: #111;
  box-shadow: 0 0 0 2px #fff inset;
}

/* price range */
.xc-filter-price #slider-range {
  margin: 14px 4px 16px;
}

.xc-filter-price .ranger-min-max-block {
  display: flex;
  align-items: center;
  gap: 8px;
}

.xc-filter-price .ranger-min-max-block input[type="text"] {
  border: 1px solid #eee;
  border-radius: 6px;
  width: 64px;
  text-align: center;
  padding: 6px 4px;
  font-size: 13px;
  background: #fafafa;
}

.xc-filter-price .ranger-min-max-block input[type="submit"] {
  margin-left: auto;
  border: none;
  background: #db123f;
  color: #fff;
  border-radius: 6px;
  padding: 2px 16px;
  font-size: 13px;
  cursor: pointer;
}

.xc-filter-clear {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: #999;
  text-decoration: underline;
  cursor: pointer;
}

/* ================= Product card (from homepage reference) ================= */
/* .xc-product-six__item {
  position: relative;
}

.xc-product-six__btns {
  display: flex;
  gap: 8px;
}

.xc-product-six__btns a {
  flex: 1;
  text-align: center;
  font-size: 13px;
  padding: 8px 6px;
  border-radius: 6px;
} */

/* ================= Mobile filter trigger + bottom sheet ================= */
.xc-mobile-filter-bar {
  display: none;
}

@media (max-width: 991px) {
  .xc-mobile-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
  }

  .xc-mobile-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2c0a63;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
  }


  .shop__sidebar.on-left {
    border-radius: 16px 16px 0 0;
    max-height: 85vh;
    overflow-y: auto;
    position: static;
    border: none;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, .12);
    padding-bottom: 90px;
  }

  .col-fixed-right {
    position: static;
  }

  .xc-filter-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: #fff;
    padding: 4px 0 14px;
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    z-index: 2;
    padding: 12px 20px;
  }

  .xc-filter-sheet-close {
    border: none;
    background: #f5f5f5;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
  }

  .xc-filter-sheet-apply {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1051;
    background: #111;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    transform: translateY(100%);
    transition: transform .3s ease;
  }

  .xc-filter-sheet-apply.is-open {
    transform: translateY(0);
  }
}

@media (min-width: 992px) {

  .xc-filter-sheet-header,
  .xc-filter-sheet-apply {
    display: none;
  }
}

.xc-filter-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 1040;
}

.xc-filter-backdrop.is-open {
  display: block;
}

.xc-shop-top-select select {
  width: 150px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  font-size: 14px !important;
  outline: none;
}

#flt_price {
  font-size: 14px;
}



.no-products-found {

  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 20px;
}


.no-products-found h3 {

  color: #111827;
  font-size: 20px;
  font-weight: 600;
}

.no-products-found p {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.5;
}

.clear-filter-btn {
  margin-top: 20px;
  padding: 4px 15px;
  border: 0;
  border-radius: 6px;
  background: #142B87;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.clear-filter-btn:hover {
  background: #10216b;
}


/* END SHOP PAGE  */


/* ORDER TRACK PAGE  */

.cx_title_main {
  font-size: 25px;
  font-weight: 600;
  color: #222;
}

.checkout-card-00x {

  border-radius: 12px;
  border: 1px solid #f0f0f0;
  padding: 20px 30px;
}

/* Centered header block above the form */
.xc-form-head {
  text-align: center;
}

/* Small circular icon badge above the heading */
.xc-icon-badge {
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0c217b;
}

.xc-icon-badge i {
  font-size: 30px;
  color: #fff;
}

/* Input with a leading icon, reusing existing cx-field/form-control look */
.xc-input-icon {
  position: relative;
}

.xc-input-icon i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-size: 14px;
  color: #9ca3af;
  pointer-events: none;
}

.xc-input-icon .form-control {
  padding-left: 38px;
}

/* Captcha box: light bordered strip so it reads as one control */
.xc-captcha-box {
  gap: 12px;
  padding: 10px 14px;
  background: #f8f9fb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.xc-captcha-sum {
  white-space: nowrap;
}

.xc-captcha-input.form-control {
  max-width: 90px;
  text-align: center;
  background: #fff;
}

/* Help text with inline icon */
.xc-help-text {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 13px;
}

.xc-help-text i {
  margin-top: 2px;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .xc-captcha-box {
    flex-wrap: wrap;
  }

  .xc-icon-badge {
    width: 48px;
    height: 48px;
  }
}

/* END RODER TRACK PAGE  */


/* CART PAGE CODE */

/* END CART PAGE */

.xc-cart-actions-00X {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}


.swiftcart-btn {
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-base);
  padding: 6px 30px;
  font-weight: 500;
  font-size: 14px;
  font-family: var(--swiftcart-font);
  transition: 0.3s;
  border-radius: var(--swiftcart-border-radius);
  display: inline-block;
  overflow: hidden;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  height: fit-content;
}



.swiftcart-btn i {
  position: relative;
  top: 1.8px;
  display: inline-block;
  margin-left: 10px;
}

.swiftcart-btn:hover {
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-secondary);
}

.swiftcart-btn:hover i {
  animation: xcArrowAnimation 0.5s forwards;
}

.swiftcart-border-btn {
  color: var(--swiftcart-base);
  background-color: transparent;
  border: 1px solid var(--swiftcart-base);
  padding: 6px 28px;
  border-radius: 6px;
  font-size: 15px;
}

.swiftcart-border-btn:hover {
  color: var(--swiftcart-white);
  border-color: var(--swiftcart-base);
  background-color: var(--swiftcart-base);
  ;
}

.swiftcart-btn-white {
  background-color: var(--swiftcart-white);
  color: var(--swiftcart-black);
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  padding: 6px 34px;
  border-radius: 30px;
}

.swiftcart-btn-white:hover {
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-secondary);
}

.swiftcart-btn-black {
  font-size: 14px;
  padding: 6px 20px;
  font-weight: 500;
  border-radius: 8px;
  display: inline-block;
  background-color: transparent;
  color: var(--swiftcart-black);
  letter-spacing: -0.3px;
  border: 1px solid #d1d1d1;
}

.swiftcart-btn-black:hover {
  color: var(--swiftcart-white);
  background-color: var(--swiftcart-secondary);
  border-top: 1px solid var(--swiftcart-secondary);
}

.swiftcart-btn-black-large {
  padding: 6px 30px;
  font-weight: 500;
}

@media (min-width: 1400px) {
  .swiftcart-btn-black-large {
    padding: 15px 40px;
  }
}

.cart_item_00x {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

.checkout-card_ac {
  border: none;
  border-radius: 6px;
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  padding: 15px 10px;

}

.swiftcart-btn-0x9 {
  padding: 4px 20px;
}

.xc-profile-dropdown {
  position: relative;
}

.xc-profile-menu {
  width: 240px;
  padding: 10px;
  margin-top: 12px;
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.xc-profile-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  margin-bottom: 3px;
  border-radius: 8px;
  font-weight: 500;
  color: #26344d;
  font-size: 14px;
}

.xc-profile-menu .dropdown-item i {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #e2e5eb;
  border-radius: 8px;
  font-size: 15px;
  color: #0c217b;
  background: white;
}

.xc-profile-menu .dropdown-item:hover {
  background: #0c217b;
  color: #ffffff;
}



.xc-profile-menu .dropdown-item.active i {
  color: #223b78;
  background: #ffffff;
}

.xc-profile-menu .dropdown-divider {
  margin: 8px 0;
  border-top: 1px solid #e5e7eb;
}

.xc-profile-menu .text-danger {
  color: #dc3545 !important;
}

.xc-profile-menu .text-danger i {
  color: #dc3545;
}


.checkout-card-account {
  border: none;
  border-radius: 6px;
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  padding: 20px !important;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, .05); */
}



/* agvasdfasdfa */
/* =========================================
   DELIVERY CARD
========================================= */

.pd-delivery-card {
  background: #eef2fb;
  border: 1px solid #dce3f5;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 22px 0;
}

.pd-delivery-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pd-delivery-item+.pd-delivery-item {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #dce3f5;
}

.pd-delivery-item>i {
  width: 34px;
  height: 34px;
  min-width: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;
  border-radius: 8px;

  color: #1e3a8a;
  font-size: 14px;
}

.pd-delivery-title {
  margin: 0 !important;
  color: #14162b;
  font-size: 15px;
  font-weight: 600;
}

.pd-delivery-sub {
  margin: 3px 0 0;
  color: #6b7280;
  font-size: 13px;
}


/* =========================================
   PRODUCT META
========================================= */

.pd-meta-list {
  margin-bottom: 16px;
}

.pd-meta-row {
  display: flex;
  gap: 8px;
  padding: 6px 0;

  font-size: 13px;
}

.pd-meta-label {
  min-width: 90px;
  flex-shrink: 0;

  color: #14162b;
  font-weight: 600;
}

.pd-meta-value {
  color: #6b7280;
}

.pd-meta-value a {
  color: #1e3a8a;
  text-decoration: none;
}

.pd-meta-value a:hover {
  text-decoration: underline;
}


/* =========================================
   POLICY ACCORDION
========================================= */

.pd-policy-accordion {
  margin-top: 15px;
}

.pd-policy-item {
  margin-bottom: 10px;

  overflow: hidden;

  background: #fff;

  border: 1px solid #dce2eb !important;
  border-radius: 10px !important;
}

.pd-policy-item .accordion-button {
  padding: 15px 16px;

  background: #fff;
  color: #14162b;

  font-size: 15px;
  font-weight: 600;

  box-shadow: none !important;
}

.pd-policy-item .accordion-button:not(.collapsed) {
  background: #f8faff;
  color: #1e3a8a;
}

.pd-policy-item .accordion-button::after {
  width: 12px;
  height: 12px;
  background-size: 12px;
}

.pd-policy-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;

  margin-right: 11px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #eef2fb;
  border-radius: 8px;

  color: #1e3a8a;
  font-size: 13px;
}


/* =========================================
   ACCORDION BODY
========================================= */

.pd-policy-item .accordion-body {
  padding: 5px 18px 18px;

  border-top: 1px solid #edf0f5;

  color: #667085;
  font-size: 13px;
  line-height: 1.6;
}

.pd-policy-list {
  margin: 10px 0 15px;
  padding-left: 18px;
}

.pd-policy-list li {
  margin-bottom: 7px;
}

.pd-policy-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #1e3a8a;

  font-size: 13px;
  font-weight: 600;

  text-decoration: none;
}

.pd-policy-link:hover {
  color: #3158a0;
}

.pd-policy-link i {
  font-size: 12px;
}


/* =========================================
   WARRANTY
========================================= */

.pd-warranty-intro {
  margin: 10px 0 15px;

  color: #4b5563;
  font-size: 13px;
}

.pd-warranty-intro strong {
  color: #14162b;
}


/* Warranty Details */

.pd-warranty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 11px 20px;

  margin-bottom: 18px;
}

.pd-warranty-grid>div {
  display: flex;
  align-items: flex-start;
  gap: 8px;

  color: #4b5563;

  font-size: 12px;
  line-height: 1.4;
}

.pd-warranty-grid i {
  margin-top: 2px;

  color: #1e3a8a;

  font-size: 13px;
}


/* =========================================
   CHECK WARRANTY
========================================= */

.pd-check-warranty {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  margin: 18px 0;
  padding: 14px;

  background: #eef2fb;

  border: 1px solid #d5def3;
  border-radius: 10px;
}

.pd-check-warranty-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pd-check-warranty-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;
  border-radius: 9px;

  color: #1e3a8a;
  font-size: 16px;
}

.pd-check-warranty-info h5 {
  margin: 0 0 2px;

  color: #14162b;

  font-size: 14px;
  font-weight: 700;
}

.pd-check-warranty-info p {
  margin: 0;

  color: #6b7280;

  font-size: 11px;
}


/* Warranty Button */

.pd-check-warranty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  padding: 9px 15px;

  white-space: nowrap;

  background: #1e3a8a;
  color: #fff;

  border-radius: 7px;

  font-size: 12px;
  font-weight: 600;

  text-decoration: none;

  transition: .2s ease;
}

.pd-check-warranty-btn:hover {
  background: #162e70;
  color: #fff;
}

.pd-check-warranty-btn i {
  font-size: 10px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

  .pd-delivery-card {
    padding: 14px;
  }

  .pd-delivery-title {
    font-size: 13px;
  }

  .pd-delivery-sub {
    font-size: 11px;
  }

  .pd-meta-row {
    font-size: 12px;
  }

  .pd-policy-item .accordion-button {
    padding: 13px;
    font-size: 13px;
  }

  .pd-policy-item .accordion-body {
    padding: 5px 14px 15px;
    font-size: 12px;
  }

  .pd-warranty-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .pd-check-warranty {
    align-items: flex-start;
    flex-direction: column;
  }

  .pd-check-warranty-btn {
    width: 100%;
  }

}


/* =========================================
   PRODUCT WARRANTY
========================================= */

.product-warranty {
  margin-top: 25px;

  overflow: hidden;

  background: #eeeeee;

  border-radius: 18px;
}


/* =========================================
   HEADER
========================================= */

.pw-header {
  min-height: 86px;

  padding: 18px 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #f8f9fa;

  border-bottom: 1px solid #e0e4ea;
}

.pw-header-content {
  display: flex;
  align-items: center;

  gap: 14px;
}


/* Shield */

.pw-shield {
  width: 44px;
  height: 44px;
  min-width: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #102544;

  color: #fff;

  border-radius: 10px;

  font-size: 18px;

  box-shadow: 0 5px 12px rgba(16, 37, 68, .15);
}


/* Header text */

.pw-header h3 {
  margin: 0 0 3px;

  color: #101828;

  font-size: 19px;
  font-weight: 700;
}

.pw-header p {
  margin: 0;

  color: #667085;

  font-size: 12px;
}


/* Covered */

.pw-covered {
  padding: 8px 18px;

  background: #edc54f;

  color: #102544;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 1px;
}


/* =========================================
   BODY
========================================= */

.pw-body {
  padding: 20px 22px;
}


/* Intro */

.pw-intro {
  margin: 0 0 7px;

  color: #52627a;

  font-size: 13px;
  line-height: 1.6;
}

.pw-intro strong {
  color: #d31357;
}


/* =========================================
   STEPS
========================================= */

.pw-step {
  display: flex;
  align-items: flex-start;

  gap: 13px;

  padding: 13px 0;

  border-bottom: 1px dashed #d5dce5;
}

.pw-step:last-of-type {
  border-bottom: 0;
}


/* Number */

.pw-number {
  width: 31px;
  height: 31px;
  min-width: 31px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f0c94d;

  color: #102544;

  border-radius: 50%;

  font-size: 12px;
  font-weight: 800;
}


/* Step Content */

.pw-step h4 {
  margin: 2px 0 4px;

  color: #17253a;

  font-size: 14px;
  font-weight: 700;
}

.pw-step p {
  margin: 0;

  color: #687991;

  font-size: 12px;
  line-height: 1.5;
}


/* =========================================
   NOT COVERED
========================================= */

.pw-not-covered {
  margin-top: 14px;

  padding: 13px 15px;

  background: #f8f9fc;

  border: 1px solid #d4ddeb;

  border-radius: 11px;
}

.pw-not-covered h4 {
  margin: 0 0 7px;

  color: #e05252;

  font-size: 14px;
  font-weight: 700;
}

.pw-not-covered h4 i {
  margin-right: 5px;

  font-size: 12px;
}

.pw-not-covered ul {
  margin: 0;

  padding-left: 17px;
}

.pw-not-covered li {
  margin-bottom: 5px;

  color: #61728b;

  font-size: 12px;
}

.pw-not-covered li:last-child {
  margin-bottom: 0;
}


/* =========================================
   CHECK WARRANTY
========================================= */

.pw-check {
  margin-top: 18px;

  padding: 15px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  background: #102544;

  border-radius: 10px;
}


/* Text */

.pw-check-info h4 {
  margin: 0 0 3px;

  color: #fff;

  font-size: 13px;
  font-weight: 700;
}

.pw-check-info p {
  margin: 0;

  color: #b9c6d8;

  font-size: 11px;
}


/* Button */

.pw-check-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 10px 16px;

  white-space: nowrap;

  background: linear-gradient(135deg,
      #3158a0,
      #d31357);

  color: #fff;

  border-radius: 7px;

  font-size: 11px;
  font-weight: 700;

  text-decoration: none;

  transition: .2s ease;
}

.pw-check-btn:hover {
  color: #fff;

  transform: translateY(-1px);
}

.pw-check-btn i {
  font-size: 10px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

  .product-warranty {
    border-radius: 13px;
  }

  .pw-header {
    padding: 15px;

    align-items: flex-start;

    gap: 10px;
  }

  .pw-header-content {
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }

  .pw-shield {
    width: 40px;
    height: 40px;
    min-width: 40px;

    font-size: 16px;
  }

  .pw-header h3 {
    font-size: 16px;
  }

  .pw-header p {
    font-size: 10px;
  }

  .pw-covered {
    padding: 7px 10px;

    font-size: 8px;
  }

  .pw-body {
    padding: 16px 15px;
  }

  .pw-intro {
    font-size: 12px;
  }

  .pw-step {
    gap: 10px;

    padding: 12px 0;
  }

  .pw-number {
    width: 28px;
    height: 28px;
    min-width: 28px;

    font-size: 11px;
  }

  .pw-step h4 {
    font-size: 13px;
  }

  .pw-step p {
    font-size: 11px;
  }

  .pw-not-covered {
    padding: 12px;
  }

  .pw-not-covered li {
    font-size: 11px;
  }

  .pw-check {
    align-items: flex-start;

    flex-direction: column;

    padding: 14px;
  }

  .pw-check-btn {
    width: 100%;
  }

}



/* PRODUCT CARD DESGIN  */

.xc-product-six__item {
  position: relative;

  height: 100%;
  padding: 16px 16px 20px;

  background: #fff;
  border: 1px solid #e6e9f0;
  border-radius: 14px;

  transition: box-shadow .25s ease, transform .25s ease;
}

.xc-product-six__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(20, 38, 65, .09);
}

/* Discount badge */
.xc-product-six__offer {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;

  padding: 1px 12px;

  background: #ff2d55;
  border-radius: 20px;

  color: #fff;
  font-size: 11px;
  font-weight: 500;
}

/* Wishlist button */
.xc-wish-btn.btn_position {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  background: #fff;
  border: 1px solid #e1e5eb;
  border-radius: 50%;

  color: #142642;
  cursor: pointer;
  transition: all .2s ease;
}

.xc-wish-btn.btn_position:hover {
  border-color: #d31357;
  color: #d31357;
}

.xc-wish-btn .xc-wish-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.xc-wish-btn i {
  font-size: 15px;
  color: #c3c5c8;
}

.xc-wish-btn.active {
  border-color: #d31357;
  color: #d31357;
}

.xc-wish-btn.active i {
  color: #d31357;
}

.xc-wish-btn.active .xc-wish-icon {
  fill: currentColor;
}

/* Image, with hover zoom */
.xc-product-six__img {
  position: relative;

  height: 230px;
  margin-bottom: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  border-radius: 10px;
}

.xc-product-six__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;

  transition: transform .4s ease;
}

.xc-product-six__item:hover .xc-product-six__img img {
  transform: scale(1.12);
}

/* Warranty pill */
.xc-product-six__warranty {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  margin-bottom: 8px;
  padding: 0px 12px;

  border: 1px solid #142642;
  border-radius: 20px;

  color: #142642;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
}

.xc-product-six__warranty svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #3158a0;
  stroke-width: 2;
}

/* Category + title */
.xc-category {
  margin-bottom: 0px;

  color: #8b919b;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.xc-product-six__title {
  margin-bottom: 10px;

  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.xc-product-six__title a {
  color: #142642;
  text-decoration: none;
}

.xc-product-six__title a:hover {
  color: #d31357;
}

/* Price */
.xc-product-six__price {
  display: flex;
  align-items: baseline;
  gap: 8px;

  margin-bottom: 14px;
}

.xc-product-six__price .price {
  color: #142642;
  font-size: 19px;
  font-weight: 700;
}

.xc-product-six__price del {
  color: #a9b0bd;
  font-size: 13px;
  font-weight: 400;
}

/* Spec pills — dummy until real spec fields are wired up */
.xc-product-six__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-bottom: 14px;
}

.xc-spec-pill {
  padding: 0px 8px;

  background: #f4f6fb;
  border: 1px solid #e6e9f0;
  border-radius: 8px;

  color: #4a5164;
  font-size: 11px;
  font-weight: 600;
}

/* Rating — dummy until real rating/review fields exist */
.xc-product-six__rating {
  display: flex;
  align-items: center;
  gap: 6px;


  margin-bottom: 16px;

  font-size: 13px;
}

.xc-product-six__rating svg {
  width: 15px;
  height: 15px;
  fill: #f2b90c;
}

.xc-product-six__rating strong {
  color: #142642;
  font-weight: 700;
}

.xc-product-six__rating span {
  color: #98a2b3;
}

/* CTA button */
.xc-product-six__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 100%;
  padding: 6px 11px;

  background: transparent;
  border: none;
  border-radius: 9px;
  border: 1px solid #142642;
  color: #142642;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;

  text-decoration: none;
  transition: background .2s ease;
}

.xc-product-six__cta:hover {
  background: #142642;
  color: #fff;
}

.xc-product-six__cta svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* END PRODUCT CARD DESGIN  */