/* Font Link */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* Root Var */
:root {

  /* Root Theme Color */
  --theme-color: #f7931e;
  --theme-color-second: #000;
  --theme-color-third: #fff;
  --theme-color-four: #dee8fc;

  /* Root Font */
  --heading-font: "Playfair Display", serif;
  --paragraph-font: "alata-regular";
  /* --span-font: 'spanist'; */

  /* Root Shadow Css */
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 16px;
  color: #1e1e1e;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: var(--paragraph-font);
}

/* Font Face */
@font-face {
  font-family: "alata-regular";
  src: url(../fonts/Alata-Regular.ttf);
}

a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;
}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 12px;
  color: inherit;
  font-family: var(--heading-font);
}

p {
  margin: 0;
  line-height: 30px;
  margin-bottom: 21px;
  font-size: 16px;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

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

h1 {
  font-size: 56px;
}

h2 {
  font-size: 46px;
}

h3 {}

h4 {}

h5 {}

h6 {}

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

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

/* Back To Top */

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

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

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

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

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

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

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

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

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


.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #fe8a02;
  border-radius: 25px;
  text-align: center;
  border: 2px solid #fe8a02;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

.m-backtotop>div.text {
  font-size: 5px;
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 20px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Padding Top And Bottom */
.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}

/* Form Css */

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* Site Button */
.hd_info {
  display: flex;
  align-items: center;
  color: #fff;
  flex-wrap: wrap;
  gap: 8px;
}


a.comon-btn {
  background: var(--theme-color);
  color: #fff;
  display: inline-block;
  font-size: 15px;
  padding: 13px 0;
  border-radius: 5px;
  text-transform: uppercase;
  width: 210px;
  text-align: center;
}

a.comon-btn:hover {
  background: #121212;
  color: #fff;
}

a.comon-btn2 {
  background: transparent;
  color: var(--theme-color-third);
  display: inline-block;
  font-size: 15px;
  padding: 13px 0;
  border-radius: 5px;
  text-transform: uppercase;
  width: 210px;
  text-align: center;
  border: 1px solid var(--theme-color-third);
}

a.comon-btn2:hover {
  background: var(--theme-color-third);
  color: var(--theme-color-second);
}

/* Sticky Top */
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}

/* Small Header */

.small {
  display: none;
}

.header_menu {
  background: transparent;
}

a.navbar-brand img {
  width: 170px;
}

.header_menu li a {
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  padding: 29px 15px;
  display: inline-block;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: #ffffffed;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 280px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}

#main_header .top_header_menu {
  padding: 4px 0;
  background: var(--theme-color);
  color: #fff;
}

#main_header .right_content ul {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 0;
  margin-left: 24px;
}

#main_header .right_content ul li i {
  font-size: 17px;
}

#main_header {
  position: absolute;
  left: 0;
  right: 0;
  color: #fff;
}

/* ************ */
.banner_sec .banner_heading h1 i {
  color: var(--theme-color);
}

.banner_sec .banner_heading h1 {
  line-height: 1;
}

.banner_sec {
  padding: 190px 0 80px;
}

/* ********** */
.home_sec1 .content {
  background: #fff;
  border-radius: 10px;
  text-align: center;
}

.accordion-item {
  overflow: hidden;
  /* border-radius: 40px !important; */
  margin-bottom: 10px;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.6rem 0.65rem;
  font-size: 17px;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
  font-weight: 500;
  border: none;
  box-shadow: none;
  text-transform: lowercase;
}

.accordion-button:not(.collapsed) {
  color: #212529;
  background-color: #fff;
  box-shadow: none;
}

.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1rem;
  margin-left: auto;
  content: "+";
  background-image: none;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  content: "-";
  background-image: none;
  transform: rotate(0deg);
}

.accordion {
  text-align: start;
}

.accordion-body {
  padding: 0 11px;
}

.home_sec1 .content .btom_content h5 {
  font-size: 16px;
  margin-bottom: 8px;
}

/* ********* */
.home_sec2 .content {
  position: relative;
}

.home_sec2 .btom_content h5 {
  font-size: 21px;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.home_sec3 .heading a {
  color: #000;
  border-bottom: 1px solid var(--theme-color);
}

/* ************* */
.home_sec4 .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home_sec4 {
  padding-top: 395px;
}

/* *********** */
.home_sec5 .content {
  text-align: center;
  position: relative;
}

.home_sec5 .content h5 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  color: #fff;
}

#home_sec1 .heading a {
  color: #000;
  border-bottom: 1px solid var(--theme-color);
}

#home_sec1 .heading {
  display: flex;
  align-items: center;
  justify-content: space-between
}

#home_sec1 .heading h2 {
  margin-bottom: 0;
}

.home_sec6 {
  padding-bottom: 315px;
}

.home_sec6 h3 {
  font-size: 38px;
}

/* ************* */

.home_sec_6 .review-box ul {
  display: flex;
  align-items: center;
  justify-content: center;
  color: orange;
  gap: 3px;
  font-size: 18px;
  margin-bottom: 8px;
}

.home_sec_6 .review-box .auther-name p {
  font-weight: 600;
  color: var(--theme-color-second);
}

.home_sec_6 .review-box img {
  width: 56px !important;
  margin-bottom: 10px !important;
  margin: 0 auto;
}

.home_sec_6 .review-box {
  text-align: center;
}

.home_sec_6 .review-box .content p {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  min-height: 101px;
}

.home_sec_6 .review-box {
  text-align: center;
  padding: 30px 10px !important;
  border-radius: 14px !important;
  background: #fdfdfff7 !important;
}

/* *********************** */
.footer {
  background: url(../image/ft_bg.jpg) no-repeat center / cover;
  padding: 80px 0;
  color: #fff;
}

.footer .ft-subscribe {
  font-size: 34px;
  margin-bottom: 10px !important;
}

.footer form {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #fff;
  border-radius: 00px;
}

.footer form input, .footer form button {
  background: transparent;
  border: none;
  font-size: 18px;
  color: #fff;
}

.footer form button {
  padding: 0 !important;
  background: #fff;
  border: none;
  font-size: 21px;
  color: #000;
  width: 50px;
  height: 45px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .social {
  display: flex;
  gap: 13px;

}

.footer .social li a {
  color: #fff;
}

.footer .heading h4 {
  font-family: var(--paragraph-font);
  font-size: 20px;
  margin-bottom: 24px !important;
}

.footer .heading .ft-list li a {
  color: #fff;
  font-size: 15px;
}

.footer .heading .ft-list li {
  margin-bottom: 16px;
}

.footer .vontent-head p {
  font-size: 15px;
}

.footer .dummoy_info {
  padding: 20px 0;
}

.footer .dummoy_info .content {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer .dummoy_info .content p {
  margin-bottom: 0;
  line-height: 1.4;
}

.footer .dummoy_info .content img {
  width: 40px;
}

.footer .heading .ft-list li span {
  color: var(--theme-color);
}

.footer .logo-img img {
  width: 264px;
  margin-bottom: 24px;
}

.footer .ft_logo_content h4 {
  font-size: 28px;
  margin-bottom: 10px !important;
  font-family: var(--heading-font);
}

.copy_heading {
  display: flex;
  justify-content: space-between;
}

/* blog-sec */

.blog-sec .blog-box a p span {
  color: #2e3192;
  margin-right: 10px;
}

.blog-sec .blog-box a p {
  color: #505050;
  margin-bottom: 5px !important;
  font-family: "my-font-medium";
  font-size: 18px;
}

.blog-sec .blog-box a h5 {
  font-family: "my-font-regular";
  font-weight: 400;
  color: #000000;
  font-size: 20px;
  line-height: 1.4;
}

.read-btn {
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.read-btn i {
  font-size: 14px;
}

.blog-sec .blog-box {
  position: relative;
}

.blog-sec .blog-box .btom_content {
  position: absolute;
  bottom: 20px;
  padding: 0 30px;
}

.blog-sec .blog-box .btom_content p {
  color: #fff !important;
}

.blog-sec .blog-box .btom_content h5 {
  color: #fff !important;
}

.blog-sec .blog-box .btom_content p {
  color: #dfdfdf !important;
  line-height: 1.5;
  font-size: 16px;
}

.blog-sec .blog-box a p {
  color: #505050;
  margin-bottom: 5px !important;
  font-family: "my-font-medium";
  font-size: 17px;
}

.blog-sec .blog-box a h5 {
  font-family: "my-font-regular";
  font-weight: 400;
  color: #000000;
  font-size: 19px;
  line-height: 1.4;
}

/* ** Inner banner ** */
.inner-banner {
  padding: 345px 0 55px;
}

.inner-banner {
  padding: 145px 0 35px;
  color: var(--theme-color-third);
  background: var(--theme-color-second) !important;
}


/* inner-blog */

.blog-section h4 {
  font-size: 28px;
}

.blog-section h4 a {
  color: #828282;
}

.blog-section .sidebar-option {
  padding-left: 6px;
}

.sidebar-option .so-categories {
  margin-bottom: 40px;
}

.sidebar-option .so-categories .title {
  font-size: 20px;
  color: #056839;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.sidebar-option .so-categories ul li a {
  font-size: 14px;
  color: #5e5e5e;
  line-height: 40px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: bold;
}

.sidebar-option .so-categories ul li a span {
  font-size: 12px;
  float: right;
}

.sidebar-option .so-latest .title {
  font-size: 20px;
  color: var(--theme-blue);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 23px;
}

.sidebar-option .so-latest .latest-item {
  overflow: hidden;
  margin-bottom: 30px;
}

.sidebar-option .so-latest .latest-item .li-pic {
  float: left;
  margin-right: 20px;
}

.sidebar-option .so-latest .latest-item .li-text {
  overflow: hidden;
}

.sidebar-option .so-latest .latest-item .li-text h6 a {
  font-size: 16px;
  color: var(--theme-blue);
  line-height: 20px;
  margin-bottom: 0;
}

.sidebar-option .so-latest .latest-item .li-text h6 {
  margin-bottom: 4px;
}

.sidebar-option .so-latest .latest-item .li-text .li-time {
  display: inline-block;
  font-size: 14px;
  color: #888888;
}

.class-item .class-item-text span {
  font-size: 16px;
}

.sidebar-option .so-latest .latest-item .li-pic img {
    width: 105px;
    height: 105px;
    object-fit: cover;
}

.sidebar-option .so-latest .latest-item {
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

/* **************** */
#inner-product-banner {
  padding: 130px 0 55px;
}

/* Product Details Page */

.inner_product_category {
  padding: 70px 0px;
}

.swiper {
  width: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  height: 60%;
  width: 100%;
}

.mySwiper3 {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper3 .swiper-slide {
  width: 25%;
  height: 84%;
  opacity: 0.4;
  border: 1px solid #d5cdcd;
}

.mySwiper3 .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
  font-size: 16px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1 !important;
  color: #323131 !important;
  border: 1px solid #888 !important;
  padding: 10px 15px !important
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 30px) !important;
  right: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
  font-size: 16px !important;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 30px) !important;
  left: auto;
}

.inner_product_category .tab-content {
  position: absolute;
  top: 200px;
  left: 58px;
}

.product_detials {
  position: relative;
}

.product_detials h5 {
  position: relative;
  font-size: 20px;
  margin-bottom: 16px;
}

.qty-input {
  color: #000;
  background: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.qty-input .product-qty,
.qty-input .qty-count {
  background: transparent;
  color: inherit;
  font-weight: bold;
  font-size: inherit;
  border: none;
  display: inline-block;
  min-width: 0;
  height: 44px;
  line-height: 1;
}

.qty-input .product-qty:focus,
.qty-input .qty-count:focus {
  outline: none;
}

.qty-input .product-qty {
  width: 50px;
  min-width: 0;
  display: inline-block;
  text-align: center;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.qty-input .product-qty::-webkit-outer-spin-button,
.qty-input .product-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.qty-input .qty-count {
  padding: 0;
  cursor: pointer;
  width: 2.5rem;
  font-size: 1.25em;
  text-indent: -100px;
  overflow: hidden;
  position: relative;
}

.qty-input .qty-count:before,
.qty-input .qty-count:after {
  content: "";
  height: 2px;
  width: 10px;
  position: absolute;
  display: block;
  background: #000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.qty-input .qty-count--minus {
  border-right: 1px solid #e2e2e2;
}

.qty-input .qty-count--add {
  border-left: 1px solid #e2e2e2;
}

.qty-input .qty-count--add:after {
  transform: rotate(90deg);
}

.qty-input .qty-count:disabled {
  color: #ccc;
  background: #f2f2f2;
  cursor: not-allowed;
  border-color: transparent;
}

.qty-input .qty-count:disabled:before,
.qty-input .qty-count:disabled:after {
  background: #ccc;
}

.qty-input {
  border-radius: 4px;
  /* box-shadow: 0 1em 2em -0.9em rgb(0 0 0 / 70%); */
  transform: scale(1.5);
  width: 120px;
}

.product_detials h4 {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 38px;
}

.product_detials h3 {
  color: var(--theme-color) !important;
  font-size: 19px;
  font-family: var(--paragraph-font);
  margin-bottom: 16px;
}

.product_detials p {
  font-size: 15px;
  line-height: 30px;
  padding-right: 42px;
  margin-bottom: 24px;
}

.size_tab h5 {
  font-size: 20px;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #000;
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.nav-tabs {
  border-bottom: inherit;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #afacab;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.nav-link:hover,
.nav-link:focus {
  color: #495057;
}

.product_detials h5 {
  position: relative;
  font-size: 20px;
}

.size_tab {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.size_tab h5 {
  margin-bottom: 0;
  font-family: "Urbanist", sans-serif;
}

.product_detials .select_content label {
  margin-bottom: 11px;
  font-size: 20px;
  font-weight: 500;
}

.form-check label {
  font-size: 15px;
  color: #888;
  margin-bottom: 7px;
}

.form-check {
  margin-right: 13px;
  display: inline-block;
}

.quickview form {
  display: flex;
  gap: 14px;
}

.quickview {
  display: flex;
  margin-bottom: 35px;
}

.color_Tab {
  margin-bottom: 26px;
}

.qty-input {
  border-radius: 4px;
  transform: scale(1.1);
  width: 137px;
  border: 1px solid #f1f0f0;
}

.add_to_Cart button {
  background: var(--theme-color);
  color: #000;
  border: none;
  font-size: 16px;
  font-family: 'roboto', sans-serif;
  padding: 12px 0;
  border-radius: 3px;
  width: 14rem;
  text-align: center;
  text-transform: uppercase;
  transition: 0.8s;
}

.add_to_Cart button:hover {
  background: #000000 !important;
  color: #ffffff;
  transition: 0.8s;
}

.add_btn {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.add_to_Cart .btn_blue {
  background: var(--theme-color-second) !important;
  color: #ffffff;
  transition: 0.8s;
}

.add_to_Cart .btn_blue:hover {
  background: #000000 !important;
  color: #ffffff;
  transition: 0.8s;
}

.wishlist {
  text-align: center;
  width: 46px;
  border: 1px solid #888;
  line-height: 41px;
  margin-left: 14px;
}

.wishlist a {
  color: #f94c4c;
  font-size: 21px;
}

.detials span {
  display: block;
  margin-bottom: 11px;
  font-size: 16px;
}

.social_ftr2 h5 {
  text-transform: capitalize;
  position: relative;
}

.social_ftr2 a {
  color: #322e2e;
  border: 1px solid #cfc8c8;
  width: 35px;
  display: inline-block;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 17px;
  border-radius: 100px;
  margin-right: 5px;
}

.detials {
  margin-bottom: 32px;
}

.form-check-input:checked {
  background-color: #323130;
  border-color: #323130;
}

.form-check-input:focus {
  box-shadow: inherit;
}

.tab-content2 p {
  color: #888;
  margin-bottom: 11px;
  line-height: 29px;
  font-size: 16px;
}

.tab-content2 h3 {
  font-size: 40px;
}

.inner_product_description {
  padding: 0px 0px 30px;
}

.inner_product_description .nav-item {
  border: 1px solid #bebebe;
  color: #000;
  margin-right: 25px;
  letter-spacing: 2px;
  border-bottom: none;
}

.inner_product_description .nav-tabs .nav-link.active {
  color: #495057;
  background-color: #fff;
  border-color: inherit;
  border-top: 2px solid #000;
  border-bottom: none;
}

.inner_product_description .nav-tabs {
  border-bottom: 1px solid #e8e8e8;
}

.inner_product_description .description_tap {
  padding: 25px;
  border: 1px solid #cacaca;
}

.inner_product_description .description_tap p {
  font-size: 15px;
}

.inner_product_description .description_tap .btn {
  background: #1e1e1e;
  color: #fff;
  border: none;
  font-size: 16px;
  padding: 12px 58px;
  border-radius: 3px;
  margin-left: 0px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tab_inner_product {
  padding: 0px 0px 50px;
}

.category_product .accordion-body {
  padding: 9px 0;
  display: flex;
  flex-direction: column;
}

.category_product .form-check {
  margin-right: 13px;
  display: inline-block;
  margin-bottom: 11px;
}

.inner_product_category .tab-content {
  position: absolute;
  top: 188px;
  left: 58px;
}

.product_detials .select_content .form-select {
  padding: 14px;
  width: 300px;
}

.product_detials .select_content {
  margin-bottom: 22px;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 0;
}

.product_detials p a {
  color: #000;
  text-decoration: underline;
}

/* ************** */

.nav-tab-product #myTab {
  border: none;
  gap: 10px;
}

.nav-tab-product .nav-link {
  background: var(--theme-color);
  color: #fff;
  /* letter-spacing: 1px; */
  margin-right: 10px;
  font-size: 16px;
  padding: 10px 30px;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  isolation: isolate;
  border-color: var(--theme-color);
}

.nav-tab-product .nav-tabs .nav-link.active {
  color: var(--theme-color);
  background-color: #fff;
  border-color: 1px solid var(--theme-color);
}

.nav-tab-product .tab-content {
  padding: 34px 30px;
  border: 1px solid var(--theme-color);
}

.product-cat h3 {
  font-size: 35px;
  margin-bottom: 18px;
  font-weight: 400;
  color: var(--theme-color);
}

.swiper {
  width: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-tab-product .tab-content .content {
  margin-bottom: 30px;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
}

.product-table th,
.product-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.product-table th {
  background-color: #f5f5f5;
  font-weight: 600;
}

.product-table tr:nth-child(even) {
  background-color: #fafafa;
}

#contact-tab-pane22 input {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

#contact-tab-pane22 textarea {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

#contact-tab-pane22 button {
  color: #ffffff;
  background-color: var(--theme-color);
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid var(--theme-color);
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.5s;
}

#contact-tab-pane22 button:hover {
  background: #000;
  border: 1px solid #000;
  color: #fff;
  transition: 0.5s;
}

/* contact-info */
.contact_page .contact_shadoW {
  box-shadow: 1px 2px 15px 2px #9b9b9b91;
}

.contact_page .contact_details {
  background-color: #fff;
  padding: 30px;
  padding-top: 50px;
}

.contact_page .contact_details h3 {
  margin-bottom: 30px;
  font-size: 30px;
}

.contact_page .contact_details h4 {
  margin-bottom: 30px;
  font-size: 23px;
}

.contact_page .contact_details h5 {
  margin-bottom: 2px;
  margin-top: 20px;
}

.contact_page .contact_details h5 i {
  margin-right: 8px;
  color: var(--theme-color);
}

.contact_page .contact_details p a,
.contact_page .contact_details p,
.contact_page .contact_details li {
  color: #747474;
}

.contact_page .contact_details li {
  list-style: none;
  line-height: 27px;
}

.contact_page .contact_form {
  background-color: var(--theme-color);
  padding: 50px 25px;
  color: #fff;
  height: 100%;
}

.contact_page .contact_form h2 {
  text-align: center;
  margin-bottom: 35px;
}

.contact_page .contact_form input,
.contact_page .contact_form textarea {
  padding: 16px 18px;
  width: 100%;
  border-radius: 5px;
  border: none;
  outline: none;
}

.contact_page .contact_form button.comon-btn {
  background: #000;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 14px 0px;
  border-radius: 50px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  border: none;
  transition: all .5s;
}

.contact_page .contact_form button.comon-btn:hover {
  background: #000;
  color: #fff;
}


.center {
   display: flex;
   justify-content: center;
   margin-top: 40px;
}

a.page-numbers {
   color: #000000;
   padding: 10px 10px;
   text-decoration: none;
   transition: background-color 0.5s;
   border: 1px solid #ddd;
   border-radius: 5px;
   margin: 0px 5px;
   padding: 10px 15px;
   font-size: 18px;
}

a.page-numbers:hover {
   background-color: #d6d4d4;
}

span.page-numbers.current {
   background-color: var(--theme-color);
   color: #fff;
   padding: 10px 15px;
   text-decoration: none;
   transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
   margin: 0px 5px;
   font-size: 18px;
   z-index: 3;
   border-radius: 5px;
}


.inner-blog-left-sec .inner-blog-comment .contact-form {
    padding: 20px 25px;
    border: 1px solid rgba(69, 69, 70, 0.2);
    border-radius: 8px;
    background: #fff;
    color: #000;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


#respond {
/*     max-width: 600px; */
    margin: 0 auto;
}
#respond #reply-title small a{
color: white !important;
background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#respond h2 {
    font-size: 24px;
    margin: 24px 0 16px 0;
    font-weight: 500;
}
#respond form {
    display: block;
    margin-top: 0em;
border: none;
}
#respond form p{
color: #6d6d6d;
 margin: 0;
    line-height: 26px;
    margin-bottom: 5px;
    font-size: 16px;
}
#respond .comment-form-comment,
#respond .comment-form-author,
#respond .comment-form-email,
#respond .comment-form-url {
    margin-bottom: 5px;
}

#respond label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

#respond textarea,
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#respond .comment-form-cookies-consent {
    margin-top: 0px;
}

#respond .form-submit {
    margin-top: 10px;
}

#respond .submit {
    background-color: #000000 !important;;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#respond .submit:hover {
    background: #000000 !important;;
    color: #fff;
    transition: all 0.8s;
}#respond .comment-form-cookies-consent input {
    width: 18px;
    height: 12px;
}
#respond .comment-form-cookies-consent input,
#respond .comment-form-cookies-consent label {
  display: inline;
}
#respond p.logged-in-as a{
color: #0f3ca1 !important;
text-decoration: underline;
display: inline-block !important;
}
#comments .comment-author a{
color: #000 !important;
}
#comments .comment-metadata a{
color: #000 !important;
}
#comments .comment-metadata a.comment-edit-link{
color: white !important;
background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#comments span.comment-reply a{
color: white !important;
background-color: #000 !important;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
margin-right: 10px !important;
}

.wpcf7-form p {
    margin-bottom: 0px;
}

.wpcf7-form p { 
    margin-bottom: 0px;
margin-top: 0px;
}

.wpcf7-form br {
    display: none;
}



/* ===== FORM LAYOUT ===== */
body form.es_subscription_form[data-form-id="5"].wysiwyg-form {
    background-color: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0 !important;
    border: none !important;
    box-shadow: none !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    border-bottom: 1.5px solid rgba(255,255,255) !important;
}

/* ===== FORM WRAPPER ===== */
#es_form_f5-n1 {
    margin: 0 !important;
}

/* ===== EMAIL FIELD WRAP ===== */
#es_form_f5-n1 .ig-es-form-field {
    flex: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ===== HIDE LABEL ===== */
#es_form_f5-n1 label.es-field-label {
    display: flex !important;
    flex-direction: column !important;
    font-size: 0 !important;
    line-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

#es_form_f5-n1 .es-field-label {
    font-size: 0 !important;
    display: block !important;
}

#es_form_f5-n1 .es-field-label::before {
    content: none !important;
}

/* ===== EMAIL INPUT ===== */
#es_form_f5-n1 .ig-es-form-input {
    width: 100% !important;
    height: 46px !important;
    padding: 10px 0 !important;
    border: none !important;
    border-radius: 0 !important;
    font-size: 15px !important;
    color: #8aa8c8 !important;
    background: transparent !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    display: block !important;
    outline: none !important;
	margin-bottom: 16px !important;
	
}

#es_form_f5-n1 .ig-es-form-input::placeholder {
    color: #7a9ab8 !important;
    opacity: 1 !important;
}

/* ===== SUBMIT CONTAINER ===== */
#es_form_f5-n1 .es-submit-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ===== HIDE ORIGINAL SUBMIT BUTTON ===== */
#es_form_f5-n1 input[name="esfpx_submit"] {
    display: none !important;
}

/* ===== HIDE SPINNER ===== */
#es_form_f5-n1 .es_spinner_image {
    display: none !important;
}

/* ===== CUSTOM BUTTON INJECTED BY JQUERY ===== */
#es_form_f5-n1 .bailey-custom-btn {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    background: #ffffff !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: 12px !important;
    flex-shrink: 0 !important;
    transition: background 0.3s ease, transform 0.2s ease !important;
}

#es_form_f5-n1 .bailey-custom-btn:hover {
    background: #e0e0e0 !important;
    transform: scale(1.05) !important;
}

#es_form_f5-n1 .bailey-custom-btn i {
    color: #1a3a6b !important;
    font-size: 18px !important;
    line-height: 1 !important;
}

/* ===== VALIDATION ERROR STATE ===== */
#es_form_f5-n1 .ig-es-form-input.bailey-error {
    color: #ff6b6b !important;
}

#es_form_f5-n1.bailey-error-border {
    border-bottom-color: #ff6b6b !important;
}

.search-form {
    position: relative;
    max-width: 100%;
}

.search-form label {
    width: 100% !important;
    margin: 0;
}

#search-form-1 {
    width: 100%;
    height: 50px;
    padding: 0 50px 0 20px; /* space for icon */
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #f5f5f5;
    outline: none;
    font-size: 16px;
    color: #333;
}

/* Placeholder color */
#search-form-1::placeholder {
    color: #777;
}

/* Search Button */
.search-submit {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #000;
    padding: 0;
}

/* Remove default button styling */
.search-submit:focus {
    outline: none;
}



/* Popup Background */
.search-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    top: 0;
    left: 0;
    display: none;
    z-index: 9999;
}

.search-box {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    max-width: 90%;
}

.search-box input {
    width: 100%;
    height: 60px;
    padding: 0 60px 0 20px;
    font-size: 18px;
    border-radius: 6px;
    border: none;
}

.search-box button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
}

.close-search {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.product-btn .button {
    background: #f7931e !important;
    color: #fff !important;
	margin-top: 20px;
    padding: 10px 25px !important;
    border-radius: 6px !important;
    text-transform: uppercase;
    font-weight: 400;
    border: none !important;
}

.product-btn .button:hover {
    background: #e67e00 !important;
}
.blg-img a img{
	height: 300px;
	object-fit: cover;
	border-radius: 10px;
}

/* Cart Page */
.woocommerce-cart-form__cart-item .product-name a{
	color: #000000;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}
.coupon .button{
	background-color: #f7931e !important;
	color: #fff !important;
}
input#coupon_code {
    padding: 5px 0px 5px 10px;
    background-color: #fff;
	width: 50% !important;
	border-radius: 5px;
}
.actions .button{
	background-color: #f7931e !important;
	color: #fff !important;
}

.cart-collaterals .wc-proceed-to-checkout a{
	background-color: #f7931e !important;
	color: #fff !important;
}
.woocommerce form .form-row .input-text{
    width: 100% !important;
}
.woocommerce-checkout-payment .button{
	background-color: #f7931e !important;
	color: #fff !important;
}
.woocommerce-form-coupon #coupon_code {
    background-color: #fff !important;
    border-radius: 5px;
    width: 100% !important;
    padding: 10px;
}
.form-row .button{
	background-color: #f7931e !important;
	color: #fff !important;
}
.return-to-shop a{
	background-color: #f7931e !important;
	color: #fff !important;
}

/* TABLE CSS START  */

.woocommerce-product-attributes tbody td p{
	margin-bottom: 0px !important;
	line-height: 20px;
}
.woocommerce-product-attributes{
	display: block;
	border: 1px solid #ddd;
}
.woocommerce-product-attributes tr.woocommerce-product-attributes-item.woocommerce-product-attributes-item--attribute_mattress {
	padding: 12px;
	border-bottom: 1px solid #ddd;
}
.woocommerce-product-attributes tr.woocommerce-product-attributes-item.woocommerce-product-attributes-item--attribute_colour {
	padding: 12px;
}

.woocommerce-Tabs-panel {
    padding: 34px 30px !important;
}

.woocommerce-product-attributes {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

.woocommerce-product-attributes th {
    font-weight: 600;
    text-align: left;
    padding: 12px;
    border: 1px solid #ddd;
    width: 30%;
}

.woocommerce-product-attributes td {
    padding: 12px;
    border: 1px solid #ddd;
}
.woocommerce table.woocommerce-product-attributes {
    width: 100% !important;
    table-layout: fixed;
}

.woocommerce table.woocommerce-product-attributes th {
    width: 30%;
}

.woocommerce table.woocommerce-product-attributes td {
    width: 70%;
}

.woocommerce-Tabs-panel--additional_information .shop_attributes {
    width: 100%;
}

.woocommerce-product-attributes td p {
    margin: 0;
}

.woocommerce-Tabs-panel {
    padding: 34px 30px !important;
}

.woocommerce-product-attributes {
    display: table;
    border: 1px solid #ddd;
}

/* alternate row color */
.woocommerce-product-attributes tr:nth-child(odd) {
	background-color: #f5f5f5;
}

.woocommerce-product-attributes tr:nth-child(even) {
     background-color: #ffffff;
}

/* TABLE CSS END */

.woocommerce p.stars a {
	color: #f7931e;
}
#respond #submit{
	color: #fff !important;
}


/* 30/03/2026 */
.arrow {
    font-size: 10px;
}
.home_sec_9 input[type="radio"] {
    width: inherit;
}

.home_sec_9 .wc_payment_methods.payment_methods.methods li {
    margin-bottom: 23px !important;
}

.home_sec_9 .woocommerce-cart #payment ul.payment_methods li, .woocommerce-checkout #payment ul.payment_methods li label {
    display: flex;
    align-content: center;
}