@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap');

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  line-height: 1.5em;
  font-family: "Fraunces", serif;
  font-weight: 400;
  color: #666;
  background: #FFFFFF;
  overflow-x: hidden;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0;
  padding: 0;
}

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

ol {
	margin: 14px 0;
	padding: 0 0 0 10px;
}

a {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #0b5798;
}

:focus {
  outline: none !important;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

iframe {
  max-width: 100%;
}

strong {
	color: #4d4d4d;
}

label {
  display: inline-block;
}

.form-col {
  margin-bottom: 8px;
}

.form-textarea {
  margin-bottom: 0;
}

.form-col__button {
  margin-top: 24px;
}

label {
  display: inline-block;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}

textarea {
  width: 100%;
  border: none;
  background: #ffffff;
  border-radius: 10px;
  padding: 13px 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #34295e;
  resize: none;
}

[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"] {
  width: 100%;
  border: none;
  padding: 13px 20px;
  outline: none;
  transition: 0.2s ease all;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #34295e;
  height: 42px;
  background: #ffffff;
  border-radius: 10px;
}

input::-webkit-input-placeholder {
  color: #707070;
  opacity: 1;
}

textarea::placeholder,
input::placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #34295e;
  opacity: 100;
}

[type="submit"] {
  border: none;
  outline: none;
  padding: 13px 38px;
  border-radius: 0px;
  transition: 0.2s ease all;
  text-align: center;
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  background: #a6c7e4;
}

[type="submit"]:hover {
  background: #7ea8cd;
}

@media (min-width: 576px) {
  .form-col:last-child {
    margin-bottom: 0px;
  }

  .form-textarea {
    margin-bottom: 0;
    height: 100%;
  }

  .form-textarea textarea {
    height: 100%;
  }

  .form-col__button {
    margin-top: 32px;
  }

  textarea {
    padding: 17px 37px;
  }
}

.btns {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5em;
  color: #FFFFFF;
  padding: 9px 22px;
}

.primary-btn {
  background: #A6C7E4;
}

.primary-btn:hover {
  background: #7ea8cd;
}

.secondary-btn {
  background: #070B30;
}

.secondary-btn:hover {
  background: #1f2776;
}

h1 {
  font-weight: 400;
  font-size: 32px;
  color: #fff;
  text-transform: capitalize;
}

h2 {
  font-size: calc(22px + 0.4vw);
  line-height: 1.4;
  margin: calc(22px + 0.4vw) 0px calc(11px + 0.4vw);
  color: #441177;
  font-weight: 600;
  text-transform: uppercase;
}

p {
  font-size: 12px;
  line-height: 1.5em;
  font-weight: 500;
  margin: 0;
}

@media (min-width: 768px) {
  p {
    font-size: 15px;
  }

  .btns {
    font-size: 16px;
    padding: 13px 38px;
  }

  .secondary-btn {
    padding: 13px 30px;
  }
}


/* header css start */
.header {
  background: #FFF2FE;
}

.top-header {
  background: linear-gradient(90deg, #B88100 0%, #DC9B00 40%, #C87800 100%);
  padding: 8px 0;
}

.top-header-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.top-header-flex p,
.top-header-flex p a {
  color: #FFFFFF;
  font-size: 12px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links li a {
  font-size: 15px;
  line-height: 1;
  color: #FFFFFF;
}

.search-bar {
  position: absolute;
  top: 50%;
  right: 55px;
  transform: translate(0, -50%);
}

.search-bar button {
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 0 20px 20px 0;
  font-size: 17px;
  line-height: 1;
	color: #441177;
}

.search-bar button:hover {
	background: #441177;
	color: #fff;
	border-radius: 0 20px 20px 0;
}

.search-bar input {
  display: none;
}

.header-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
}

.logo a {
  display: block;
  max-width: 140px;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-right ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 55px 0 0;
}

.header-right ul li p {
  display: none;
}

.header-right ul li button {
  border: none;
  padding: 0;
  font-size: 15px;
  line-height: 1;
  background: transparent;
}

.country-wrap {
  display: none;
}

.cart-icon,
.wishlist {
  position: relative;
}

.cart-icon .cart-no,
.wishlist .wishlist_products_counter_number {
  position: absolute;
  top: -5px;
  right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  background: #DD0033;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  color: #FFFFFF;
  pointer-events: none;
  user-select: none;
}

.wishlist .wishlist_products_counter_number {
	right: -6px;
}

.menu-bar {
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 99;
  height: 100%;
  width: 300px;
  background: #DC9B00;
  opacity: 0;
  transition: 0.4s;
  padding: 30px 0 0 30px;
}

.menu-bar.show {
  left: 0;
  opacity: 1;
}

.menu-bar li {
  margin-bottom: 15px;
}

.menu-bar li a {
  font-size: 15px;
  line-height: 1.5em;
  font-weight: 600;
  color: #FFFFFF;
}

.contact-btn-wrap {
  margin: 0 15px 0 0;
}

.contact-btn-wrap a {
  font-size: 14px;
}

.toggle-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  z-index: 999;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 7px;
  width: 30px;
  height: 30px;
  overflow: hidden;
  padding: 0;
}

.toggle-btn span {
  width: 100%;
  height: 3px;
  background: #070B30;
  border-radius: 2px;
  transition: 0.2s ease-in-out;
}

.toggle-btn.active {
  row-gap: 0;
}

.toggle-btn.active span:first-child {
  transform: rotate(45deg) translate(1px, 1px);
}

.toggle-btn.active span:nth-child(2) {
  display: none;
}

.toggle-btn.active span:last-child {
  transform: rotate(-45deg) translate(1px, -1px);
}

.close-menu {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  padding: 0;
  background: #FFFFFF;
  width: 35px;
  height: 35px;
  font-size: 20px;
  transition: 0.3s;
  transition-delay: 0.5s;
}

@media (min-width: 768px) {
  .logo a {
    max-width: 160px;
  }

  .menu-bar {
    width: 70%;
  }

  .menu-bar li a {
    font-size: 16px;
  }

  .contact-btn-wrap a {
    font-size: 16px;
  }

  .header-right ul {
    gap: 20px;
    align-items: center;
  }

  .country-wrap {
    display: block;
  }

  .header-right ul li button {
    font-size: 18px;
  }

  .search-bar button {
    font-size: 20px;
  }
}

@media (min-width: 1200px) {
  .header {
    padding: 0;
  }

  .social-links li a {
    font-size: 20px;
  }

  .header-wrapper {
    align-items: center;
    padding: 14px 0;
  }

  .logo a {
    max-width: 190px;
  }

  .header .container-fluid:has(.menu-bar) {
    background: #441177;
  }

  .menu-bar {
    position: relative;
    left: unset;
    top: unset;
    width: auto;
    height: auto;
    background: transparent;
    display: block;
    opacity: 1;
    padding: 0;
  }

  .menu-bar ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
  }

  .menu-bar li {
    margin-bottom: 0;
  }

  .menu-bar li a {
    color: #FFFFFF;
    border-bottom: 5px solid transparent;
    padding: 14px 10px;
  }

  .menu-bar li a:hover,
  .menu-bar li.active a {
    border-color: #7A4900;
  }

  .contact-btn-wrap {
    margin: 0 0 0 40px;
  }

  .toggle-btn,
  .close-menu {
    display: none;
  }

  .search-bar {
    position: relative;
    top: unset;
    right: unset;
    transform: translate(0);
    width: 544px;
    max-width: 544px;
  }

  .search-bar form {
    position: relative;
  }

  .search-bar input {
    display: block;
    width: 100%;
    height: 49px;
    border: #441177 1px solid;
    border-radius: 20px;
    padding: 10px 50px 10px 15px;
  }

  .search-bar button {
    position: absolute;
    top: 0;
    right: 0;
    width: 49px;
    height: 100%;
  }

  .header-right ul li p {
    display: block;
  }

  .country-wrap {
    display: block;
  }

  .header-right ul li button {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .country-wrap button img {
    width: 22px;
  }

  .country-wrap p {
    text-transform: uppercase;
  }
}


.overlay-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 22;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.overlay-bg.show {
  visibility: visible;
  opacity: 1;
}

/* header css end */

/* banner css start */
.banner-slider-col img {
  width: 100%;
  object-fit: cover;
}

.js-banner-slider .slick-arrow {
  width: calc(14px + 3vw);
  height: calc(14px + 3vw);
  color: inherit;
  left: 15px;
}

.js-banner-slider .slick-arrow::before {
  font-size: calc(10px + 2vw);
}

.js-banner-slider .slick-next {
  left: unset;
  right: 15px;
}

/* banner css end */


.half-image-bg {
  background: #FFF2FE;
}

.half-image-col {
  padding-right: 0;
}

.half-image-half-carousel {
  margin: 30px 0 0;
}

.light-effect {
  position: relative;
  overflow: hidden;
  display: block;
}

.light-effect:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -200%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .3);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -webkit-transition: all .4s ease;
  transform: skew(45deg);
  -webkit-transform: skew(45deg);
  -moz-transform: skew(45deg);
  -o-transform: skew(45deg);
  -ms-transform: skew(45deg);
}

.light-effect:hover:after {
  left: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  transition: all .4s ease;
}

.half-carousel-col {
  padding: 0 40px 0 30px;
}

.js-product-slider {
  padding: 20px 20px 0 20px;
  margin: 0 -15px;
}

.product-slider-col {
  position: relative;
  margin: 0 15px;
}

.image-box {
  padding-bottom: 5px;
}

.image-box img {
  width: 100%;
}

.text-box .pdr-link {
  color: #441177;
  font-size: calc(13px + 0.2vw);
  line-height: 1.5;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.text-box .pdr-link::after {
  position: absolute;
  content: "";
  inset: 0;
  background: transparent;
}

.text-box .pdr-link del {
  color: #939393;
  font-size: calc(10px + 0.2vw);
  display: inline-block;
  margin-left: calc(4px + 0.2vw);
}

.text-box .mid-text {
  color: #e62cef;
  font-size: calc(11px + 0.2vw);
  font-weight: 600;
  line-height: 1.5;
}

.text-box .bot-text {
  color: #626262;
  font-size: calc(11px + 0.2vw);
  font-weight: 500;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  line-height: 1.5;
}

@media (max-width: 1199px) {
  .half-carousel-col {
    padding: 0 40px 0 40px;
  }
}


.image-gallery {
  margin: 30px 0 0;
}

.image-gallery-flip .image-gallery-flex {
  flex-direction: row-reverse;
}

.image-gallery-inner,
.image-gallery-flex {
  gap: 24px 0;
}

.image-gallery-col img {
  width: 100%;
}


.icon-text-cards {
  margin: 30px 0 0;
}

.icon-text-flex {
  gap: 24px 0;
}

.icon-text-box {
  display: block;
  padding: 30px 10px;
  text-align: center;
  background: #FFEFFE;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}

.icon-text-box img {
  display: block;
  max-width: 70px;
  margin: 0 auto;
}

.icon-text-box span {
  display: block;
  color: #441177;
  margin: 8px 0;
}


.jewellery-category {
  margin: 30px 0 0;
}

.category-flex {
  gap: 24px 0;
}

.category-cards {
  background: rgba(0, 0, 0, 0.02);
  border: #441177 1px solid;
}

.category-cards .text-box {
  background: #441177;
  padding: calc(12px + 0.2vw) calc(18px + 0.2vw);
  text-align: center;
}

.category-cards .text-box .pdr-link {
  display: block;
  color: #441177;
  color: #FFEFFE;
  font-size: calc(18px + 0.2vw);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  margin-top: 0;
}


.letest-news {
  margin: 30px 0 0;
}

.letest-news h2 {
  text-align: center;
  margin-top: 0;
}

.news-cards {
  position: relative;
}

.news-cards .text-box .date {
  color: #441177;
  font-size: calc(12px + 0.2vw);
  padding-top: calc(6px + 0.2vw);
}

.news-cards .text-box .title a {
  font-size: calc(14px + 0.2vw);
  padding-top: calc(2px + 0.2vw);
  color: #666;
}

.news-cards:hover .text-box .title a {
  color: #e62cef;
}

.news-cards .desc {
  font-size: calc(11px + 0.2vw);
  padding-top: calc(0px + 0.2vw);
  line-height: 1.4;
}


/* footer css tart */
.footer {
  background: #441177;
  padding: 24px 0 0;
  margin: 1.5rem 0 0;
}

.footer-wrap {
  gap: 24px 0;
}

.footer-logo {
	max-width: 200px;
	margin-bottom: 15px;
	margin-left: -14px;
}

.footer-col h5 {
  font-size: 16px;
  color: #FFB300;
  line-height: 1;
  margin: 0 0 8px;
}

.footer-col p {
	color: #fff;
	font-size: 14px;
}
.footer-col h6 {
	font-size: 14px;
	color: #CECECD;
	line-height: 1;
	margin: 20px 0 13px 0;
}

.footer-links {
  padding: 0 0 0 14px;
}

.footer-links li {
  padding: 4px 0;
}

.footer-links li a {
  font-size: 15px;
  line-height: 1.4em;
  color: #FFFFFF;
}

.footer-links li a:hover,
.footer-social-links li a:hover {
  color: #f868ff;
}

.footer-social-links {
  display: flex;
  gap: 14px;
}

.footer-social-links li a {
  font-size: 25px;
  line-height: 32px;
  color: #fff;
}

.ftr-cont-link {
	padding: 0;
}

.ftr-cont-link li {
	font-size: 15px;
	line-height: 1.4em;
	color: #FFFFFF;
}

.ftr-cont-link li a {
	color: #f868ff;
	margin-left: 5px;
}

.ftr-cont-link li a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.payment-items-img {
	display: block;
	max-width: 220px;
	margin: 15px auto 0 0;
}

.copyright {
  text-align: center;
  background-image: linear-gradient(90deg, #B88100 0%, #DC9B00 40%, #C87800 100%);
  margin: 24px 0 0;
}

.copyright p {
  color: #441177;
  font-weight: 300;
  font-size: 15px;
  line-height: 2;
}

.copyright p a {
  color: #EEE;
  font-weight: 400;
}

.copyright p a:hover {
  text-decoration: underline;
}

@media (min-width: 575px) {
	.payment-items-img {
		margin: 0 0 0 auto;
	}
}

@media (max-width: 991px) {
	.footer-logo {
		margin-left: 0;
	}
	
  .footer-links li {
    padding: 1px 0;
  }

  .footer-links li a {
    font-size: 12px;
  }

  .footer-social-links {
    gap: 8px;
  }

  .footer-social-links li {
    line-height: 1;
  }

  .footer-social-links li a {
    font-size: 15.5px;
    line-height: 25px;
  }

  .copyright p {
    font-size: 12px;
  }
}


/* inner pages css start */
.inner-banner {
  position: relative;
  min-height: 400px;
}

.inner-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.product-details-area {
  margin: 30px 0 0;
}

.product-details-flex {
  gap: 24px 0;
}

.filter-col {
  border: 1px solid #DDDDDD;
  background: #FFFFFF;
  margin-bottom: 16px;
}

.filter-col:last-child {
  margin-bottom: 0;
}

.filter-col-title {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #441177;
  cursor: pointer;
  user-select: none;
  padding: 10px 15px;
}

.filter-col-title::after {
  position: absolute;
  content: "\f078";
  top: 12px;
  right: 15px;
  font-size: 15px;
  line-height: 1;
  font-family: 'FontAwesome';
}

.filter-col.open .filter-col-title::after {
  transform: rotate(-180deg);
}

.filter-tgl-item {
  padding: 15px;
}

.price-range-slider .range-value {
  margin: 0;
}

.price-range-slider .range-value input {
  width: 100%;
  background: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  text-align: center;
  border: none;
}

.price-range-slider .range-bar {
  border: none;
  background: #FFF2FE;
  height: 5px;
  width: 96%;
  margin-left: 8px;
}

.price-range-slider .range-bar .ui-slider-range {
  background: #441177;
}

.price-range-slider .range-bar .ui-slider-handle {
  border: none;
  border-radius: 25px;
  background: #e62cef;
  height: 16px;
  width: 16px;
  top: -0.42em;
  cursor: pointer;
}

.price-range-slider .range-bar .ui-slider-handle+span {
  background: #e62cef;
}

.filter-option-list li {
  padding: 5px 0;
}

.filter-option-list li input[type="checkbox"] {
  width: 18px;
  height: 18px;
	border: 1px solid #441177;
}

.filter-option-list li label {
  display: flex;
	gap: 8px;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #070B30;
  cursor: pointer;
  padding: 0 0 6px;
}

/* .filter-option-list li label::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #441177;
  border-radius: 4px;
}

.filter-option-list li label::after {
  position: absolute;
  content: "";
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  background: #441177;
  border-radius: 4px;
  transform: scale(0.8);
  opacity: 0;
  transition: 0.3s;
}

.filter-option-list li input[type="checkbox"]:checked > label::after {
  transform: scale(1);
  opacity: 1;
} */

.top-filter-sortby {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  margin: 0 0 16px;
}

.mobile-filter-btn {
  display: none;
}

.filter-sortby-col {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: max-content;
}

.filter-sortby-col label {
  display: block;
  font-size: 14px;
  line-height: 1.2em;
  color: #000;
}

.filter-sortby-col select {
  margin: 0 0 0 10px;
  padding: 5px 36px 5px 10px;
  width: auto;
  height: 36px;
  background: #FFFFFF url(../img/dd-arrow.png) no-repeat right;
  border: 1px solid #DDDDDD;
  border-radius: 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #070B30;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
}

.product-flex {
  gap: 20px 0;
}

.product-col {
  border: 1px solid #DDDDDD;
}

.prd-image {
  position: relative;
}

.prd-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.prd-image a {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #441177;
  visibility: hidden;
  transform: scale(0.9);
  opacity: 0;
  transition: 0.3s;
  padding: 12px 0;
}

.prd-image a:hover {
  background: #6a1fb6;
}

.product-col:hover .prd-image a {
  visibility: visible;
  transform: scale(1);
  opacity: 1;
}

.prd-bottom {
  padding: 15px;
}

.title-wishlist {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.prd-bottom h6 {
	position: relative;
  font-size: 18px;
  color: #000000;
  width: 92%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  padding: 2px 0;
}

.title-wishlist>div {
	position: absolute;
	top: 0;
	right: 0;
}

.title-wishlist>div a {
	color: #000;
	background: transparent;
	padding: 0;
}

.title-wishlist>div a:hover {
	background: transparent;
}

.prd-price {
  display: flex;
  align-items: center;
  gap: 10px;
	min-height: 43px;
  font-size: 22px;
  line-height: 1.25em;
  font-weight: 500;
  color: #7f7f7f;
  padding: 8px 0;
}

.prd-price del {
  font-size: 18px;
  font-weight: 400;
  color: #000;
}

.prd-price span {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #FF3055;
}

.stock-text {
  font-size: 14px;
  color: #1FAB00;
  text-align: right;
  margin: 0 0 10px;
}

.prd-bottom a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #441177;
  padding: 15px 0;
}

.prd-bottom a:hover {
  background: #6a1fb6;
}

@media (max-width: 991px) {
  .product-details-flex {
    position: relative;
  }

  .filter-bar {
    position: absolute;
    top: 85px;
    left: 12px;
    z-index: 2;
    transform: scale(0.8);
    width: calc(100% - 25px);
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

  .filter-bar.show {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
  }

  .mobile-filter-btn {
    display: block;
    width: calc(50% - 8px);
  }

  .top-filter-sortby {
    justify-content: space-between;
    align-items: unset;
  }

  .mobile-filter-btn button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: #e62cef;
    font-size: 14px;
    line-height: 1;
    color: #fff;
  }

  .filter-sortby-col {
    width: calc(50% - 8px);
  }

  .filter-sortby-col label {
    display: none;
  }

  .filter-sortby-col select {
    width: 100%;
    margin-left: 0;
  }
}


/* ananta 30-07 */
.product-detl-section {
  margin: 30px 0;
}

.product-learg-slide {
  max-width: 400px;
  margin: 0 auto;
}

.product-image-items img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.product-small-slide {
  max-width: 400px;
  margin: 0 auto;
  padding: 16px 0 0;
}

.js-product-thumb-slider {
  margin: 0 -15px;
}

.product-thumb-col {
  cursor: pointer;
  border: 2px solid transparent;
  padding: 5px;
  margin: 0 15px;
}

.product-thumb-col.slick-current {
  border-color: #441177;
}

.product-thumb-col img {
  width: 100%;
  height: 114px;
  object-fit: cover;
}

.product-all-details h2 {
  margin-top: 0;
}

.product-all-details p {
  margin: 12px 0;
}

.product-all-details p .stock-text {
  padding-left: 30px;
}

.prodc-price {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  line-height: 1.25em;
  font-weight: 500;
  color: #7f7f7f;
}

.prodc-price del {
  font-size: 18px;
  font-weight: 400;
  color: #000;
}

.prodc-price span {
  display: block;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #FF3055;
}

select {
  padding: 5px 36px 5px 10px;
  width: 100%;
  height: 36px;
  background: #FFFFFF url(../img/dd-arrow.png) no-repeat right;
  border: 1px solid #DDDDDD;
  border-radius: 0px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #070B30;
}

.metal-select {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 500px;
}

.metal-select .brand {
	width: 100%;
}

.metal-select p {
	min-width: 60px;
}

.metal-select label {
  min-width: 60px;
}

.metal-select select {
  width: calc(100% - 60px);
  color: #441177;
}


.quantity-cart-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 16px 0;
}

.quantity {
  width: 150px;
  display: flex;
	border: 1px solid #6217ad;
  border-radius: 4px;
  overflow: hidden;
}

.quantity button {
  background-color: #441177;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 20px;
  width: 100%;
  height: auto;
  text-align: center;
  transition: background-color 0.2s;
  padding: 0;
}

.quantity button:hover {
  background-color: #6217ad;
}

.add-cart_btn button {
	height: 50px;
	border: 1px solid #441177;
	background: transparent;
	display: inline-block;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	color: #441177;
	padding: 0 15px;
}

.add-cart_btn button:hover {
	background: #441177;
	color: #fff;
}

/* .input-box {
  border: 2px solid #441177;
  border-radius: 0;
  width: 40%;
  height: 50px;
  text-align: center;
  padding: 8px 10px;
  font-size: 16px;
  font-weight: 600;
  outline: none;
} */

/* Hide the number input spin buttons */
.input-box::-webkit-inner-spin-button,
.input-box::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-box[type="number"] {
  -moz-appearance: textfield;
}

.quantity-cart-wrapper a {
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #441177;
  background: transparent;
  border: 1px solid #441177;
  padding: 17px 26px;
}

.add-cart_btn a:hover {
  color: #fff;
  border-color: #441177;
  background: #441177;
}

.buy-now-btn a {
  color: #FFB300;
  border-color: #FFB300;
}

.buy-now-btn a:hover {
  color: #ffffff;
  background: #FFB300;
}

.share-on-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.share-on-list li {
  font-size: 16px;
  line-height: 1.4;
  color: #404043;
}

.share-on-list li a {
  color: #404043;
}

.share-on-list li a:hover {
  color: #FFB300;
}

.payment-method {
  border: 1px solid #FFB300;
  background: #ffb3002b;
  padding: 12px;
  margin: 16px 0 0;
}

.payment-method p {
  margin: 0 0 10px;
}

@media (max-width: 991px) {
  .product-learg-slide {
    max-width: 550px;
  }

  .product-small-slide {
    max-width: 550px;
  }

  .product-detl-wrap {
    gap: 24px 0;
  }
}

@media (max-width: 767px) {
  .product-image-items img {
    height: 350px;
  }

  .js-product-thumb-slider {
    margin: 0 -8px;
  }

  .product-thumb-col {
    margin: 0 8px;
  }

  .product-thumb-col img {
    height: 100px;
  }
}

/* 31-07 ananta */
.detl-tab-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  border-bottom: 1px solid #c4c4c4;
  margin: 0 auto;
}

.detl-tab-nav button {
  border: none;
  background: transparent;
  position: relative;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  color: #7f7f7f;
  border-bottom: 3px solid transparent;
  padding: 0 40px 15px 40px;
}

.detl-tab-nav button.active {
  color: #FFB300;
  border-color: #FFB300;
}

.detl-tab-nav button::after {
  content: "";
  width: 17px;
  height: 9px;
  background: url(../img/tab-select.png) no-repeat center;
  filter: brightness(0) saturate(100%) invert(71%) sepia(50%) saturate(3196%) hue-rotate(1deg) brightness(107%) contrast(103%);
  position: absolute;
  left: 50%;
  bottom: -1px;
  opacity: 0;
  margin-left: -8px;
}

.detl-tab-nav button.active::after {
  opacity: 1;
}

.prodc-tab-content {
  margin: 16px 0 0;
}

.prodc-tab-content p {
  font-size: clamp(14px, 0.833vw, 16px);
  font-weight: 400;
  line-height: 1.4;
  color: #707070;
  padding: 10px 0;
}

.prodc-tab-content:not(:first-of-type) {
  display: none;
}

.prodc-tabs-img img {
  width: 100%;
}

.prodc-tab-content table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: collapse;
}

.prodc-tab-content:has(table) {
  margin-top: 24px;
}

.prodc-tab-content table tbody tr {
  border: 1px solid #c5c5c5;
}

.prodc-tab-content table tbody td {
  padding: 8px 15px;
  font-size: clamp(14px, 0.833vw, 16px);
  font-weight: 400;
  line-height: 1.4;
  color: #565253;
  width: 50%;
}

.prodc-tab-content h2 {
  margin: 12px 0;
}

.spec-detl-list {
  list-style: disc;
  padding: 0 0 0 20px;
}

.spec-detl-list li {
  font-size: clamp(14px, 0.833vw, 16px);
  font-weight: 400;
  line-height: 1.4;
  color: #707070;
  margin: 8px 0;
}

@media (max-width: 1023px) {
  .detl-tab-nav button {
    font-size: 18px;
    border-width: 2px;
    padding: 0 25px 15px 25px;
  }
}

@media (max-width: 575px) {
  .buy-now-btn {
    width: 100%;
  }

  .buy-now-btn a {
    display: block;
    text-align: center;
  }


  .detl-tab-nav button {
    font-size: 17px;
    padding: 0 12px 12px;
  }

  .prodc-tab-content table tbody td {
    width: auto;
  }

  .prodc-tab-content table tbody td:first-child {
    min-width: 130px;
  }
}


.related-product {
  margin: 25px 0 80px 0;
}

.related-product h2 {
  text-align: center;
  margin-top: 0;
}

.related-product h2 span {
  display: inline-block;
  opacity: 0.7;
}

.js-related-product-slider {
  margin: 0 -12px;
}

.related-product-col {
  margin: 0 12px;
}

.related-product-inner {
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.related-prod-image {
  display: block;
}

.related-prod-image img {
  margin: 0 auto;
}

.related-prod-text {
  text-align: center;
  padding: 15px;
}

.related-prod-text h5 {
  font-size: 16px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #441177;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.related-prod-text span {
  display: block;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #de9c01;
  padding: 10px 0 0;
}

.related-info-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(255, 179, 0, 0.9);
  text-align: center;
  transform: scaleY(0);
  transition: transform .5s;
  width: 100%;
  padding: 20px 25px;
}

.related-product-inner:hover .related-info-btn {
  transform: scaleY(1);
}

.related-info-btn a {
  margin: 0 auto;
  padding: 0 30px;
  width: auto;
  height: 30px;
  background: none;
  border: 2px solid #FFFFFF;
  font-size: 12px;
  font-weight: 500;
  line-height: 28px;
  color: #FFFFFF;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
}

@media (max-width: 767px) {
  .js-related-product-slider .slick-prev {
    left: 10px;
  }

  .js-related-product-slider .slick-next {
    right: 10px;
  }
}

/**chiranjit**/
.price-range-slider .slider {
  height: 6px;
  position: relative;
  background: #eee;
  border-radius: 3px;
  margin: 12px 0 16px;
}
.price-range-slider .slider .rprogress {
  position: absolute;
  height: 100%;
  left: 0;
  right: 0;
  background: #441177; /* your theme color here */
  border-radius: 3px;
}
.price-range-slider .range-input {
  position: relative;
}
.price-range-slider .range-input input[type="range"] {
  position: absolute;
  top: -22px;
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  background: none;
  pointer-events: none; /* we’ll still get events on thumbs */
}
.price-range-slider .range-input input[type="range"]::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #e62cef; /* your theme color */
  border: 2px solid #fff;
}
.price-range-slider .price-input {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.price-range-slider .price-input .field {
  flex: unset;
}

.price-range-slider .price-input .field:first-child input {
	text-align: right;
}

.price-range-slider .price-input input[type="number"] {
  width: auto;
	height: auto;
	padding: 0;
}

/* Chrome, Safari, Edge, Opera */
.price-range-slider .price-input input[type="number"]::-webkit-outer-spin-button,
.price-range-slider .price-input input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.price-range-slider .price-input input[type="number"] {
  -moz-appearance: textfield;
}


.hidden-grandchild { display: none; }
.pagination { 
	list-style: none; 
	display: flex; 
	justify-content: center;
	gap: 8px; 
	padding-left: 0;
	margin: 25px 0 0;
}

.pagination li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 1px solid #6a1fb6;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1;
	color: #6a1fb6;
}

.pagination a.active {
	font-weight: 700; 
	background: #6a1fb6;
	color: #fff;
}

#productGrid {
  position: relative;
}

.ajax-loader-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background: rgba(255, 255, 255, 0.8);
  z-index: 99; /* higher than product cards */
  display: none;
}

.ajax-loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #333;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.news-single-area {
	padding: clamp(40px, 4.167vw, 60px) 0 0;
}


.toggle-child, .toggle-grandchild { display: inline-block; margin-top:0; color:#6a1fb6; cursor:pointer; }
.filter-col .filter-tgl-item { display: none; }
.filter-col.open .filter-tgl-item { display: block; }

.hidden-child, .hidden-grandchild { display: none; }


/* 11-9-25 */
.woocommerce-MyAccount-navigation li:not(:last-child) {
	margin-bottom: 12px;
}
.woocommerce-MyAccount-navigation li a {
	font-size: clamp(16px, 1.25vw, 18px);
	line-height: 1.2em;
	font-weight: 600;
	color: #000;
}

.qty-field {
	
}

/* Chrome, Safari, Edge, Opera */
.qty-field::-webkit-outer-spin-button,
.qty-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.qty-field[type=number] {
  -moz-appearance: textfield;
	text-align: center;
}


.logcontainer {
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 550px;
    background: #FFF2FE;
    border-radius: 30px;
    overflow: hidden;
}

.logcontainer form {
    margin: 0 auto;
    width: 100%;
}

.logcontainer .form-box {
    position: absolute;
    right: 0;
    width: 50%;
    height: 100%;
    background: #FFF2FE;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #333;
    text-align: center;
    padding: 40px;
    z-index: 1;
    transition: .6s ease-in-out 1.2s, visibility 0s 1s;
}

.logcontainer.active .form-box {
    right: 50%;
}

.logcontainer .form-box.register {
    visibility: hidden;
}

.logcontainer.active .form-box.register {
    visibility: visible;
}

.input-box {
    position: relative;
    margin: 0 0 20px 0;
}

.input-box label {
	margin: 0 0 6px 0;
}

.input-box input {
    width: 100%;
    padding: 13px 50px 13px 20px;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #441177;
    outline: none;
    font-size: 16px;
    color: #393939;
    font-weight: 400;
}

.input-box input::placeholder {
    color: #393939;
}

.input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

#account_display_name_description {
	display: block;
	margin: 10px 0 0 0;
}

.logcontainer .forgot-link {
    margin: 20px 0;
}

.logcontainer .forgot-link a {
    font-size: 14.5px;
    color: #333;
}

.logcontainer .btn,
button[type="submit"].woocommerce-Button {
    width: 100%;
    height: 48px;
    background: #441177;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 600;
}

.logcontainer .btn a {
    color: #FFFFFF !important;
}

.logcontainer .social-icons {
    display: flex;
    justify-content: center;
}

.logcontainer .social-icons a {
    display: inline-flex;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 24px;
    color: #333;
    margin: 0 8px;
}

.logcontainer .toggle-box {
    position: absolute;
    width: 100%;
    height: 100%;
}

.logcontainer .toggle-box::before {
    content: '';
    position: absolute;
    left: -250%;
    width: 300%;
    height: 100%;
    background: #441177;
    /* border: 2px solid red; */
    border-radius: 150px;
    z-index: 2;
    transition: 1.8s ease-in-out;
}

.logcontainer.active .toggle-box::before {
    left: 50%;
}

.logcontainer .toggle-panel {
    position: absolute;
    width: 50%;
    height: 100%;
    /* background: seagreen; */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: .6s ease-in-out;
}

.logcontainer .toggle-panel h2,
.logcontainer .toggle-panel p {
    color: #FFFFFF;
}

.logcontainer .toggle-panel.toggle-left {
    left: 0;
    transition-delay: 1.2s;
}

.logcontainer.active .toggle-panel.toggle-left {
    left: -50%;
    transition-delay: .6s;
}

.logcontainer .toggle-panel.toggle-right {
    right: -50%;
    transition-delay: .6s;
}

.logcontainer.active .toggle-panel.toggle-right {
    right: 0;
    transition-delay: 1.2s;
}

.logcontainer .toggle-panel p {
    margin-bottom: 20px;
}

.logcontainer .toggle-panel .btn {
    width: 160px;
    height: 46px;
    background: transparent;
    border: 2px solid #fff;
    box-shadow: none;
}

@media screen and (min-width: 1200px) {
	.js-parts-slider .parts {

  min-height: 186px;
}
}

@media screen and (max-width: 650px) {
    .logcontainer {
        width: calc(100vw - 40px);
        height: calc(100vh - 40px);
    }

    .logcontainer .form-box {
        bottom: 0;
        width: 100%;
        height: 70%;
    }

    .logcontainer.active .form-box {
        right: 0;
        bottom: 30%;
    }

    .logcontainer .toggle-box::before {
        left: 0;
        top: -270%;
        width: 100%;
        height: 300%;
        border-radius: 20vw;
    }

    .logcontainer.active .toggle-box::before {
        left: 0;
        top: 70%;
    }

    .logcontainer.active .toggle-panel.toggle-left {
        left: 0;
        top: -30%;
    }

    .logcontainer .toggle-panel {
        width: 100%;
        height: 30%;
    }

    .logcontainer .toggle-panel.toggle-left {
        top: 0;
    }

    .logcontainer .toggle-panel.toggle-right {
        right: 0;
        bottom: -30%;
    }

    .logcontainer.active .toggle-panel.toggle-right {
        bottom: 0;
    }
}

@media screen and (max-width: 400px) {
    .logcontainer .form-box {
        padding: 20px;
    }

    .logcontainer .toggle-panel h1 {
        font-size: 30px;
    }
}

#full-stars-example .rating-group {
    display: inline-flex;
}

#full-stars-example .rating__icon {
    pointer-events: none;
}

#full-stars-example .rating__input {
    position: absolute !important;
    left: -9999px !important;
}

#full-stars-example .rating__label {
    cursor: pointer;
    padding: 0 0.1em;
    font-size: 24px;
}

#full-stars-example .rating__icon--star {
    color: orange;
}

#full-stars-example .rating__icon--none {
    color: #eee;
}

#full-stars-example .rating__input--none:checked+.rating__label .rating__icon--none {
    color: red;
}

#full-stars-example .rating__input:checked~.rating__label .rating__icon--star {
    color: #ddd;
}

#full-stars-example .rating-group:hover .rating__label .rating__icon--star {
    color: orange;
}

#full-stars-example .rating__input:hover~.rating__label .rating__icon--star {
    color: #ddd;
}

#full-stars-example .rating-group:hover .rating__input--none:not(:hover)+.rating__label .rating__icon--none {
    color: #eee;
}

#full-stars-example .rating__input--none:hover+.rating__label .rating__icon--none {
    color: red;
}

.pro-btn .btn {
    width: 100%;
    max-width: 241px;
    font-size: 18px;
    padding: 10px 25px;
}

.upload__box {
    background: #64AEA81A;
    border: 0.35px solid #64AEA81A;
    border-radius: 10px;
    padding: 20px;
}

.upload__box p {
    margin: 0;
    padding: 0;
}

.upload__box p .d-block {
    margin-top: 10px;
}

.upload__inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.upload__btn {
    width: 100%;
    height: 100px;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px dashed #64AEA8;
    background-color: transparent;
    border-radius: 10px;
    line-height: 26px;
    font-size: 14px;
    font-weight: 600;
    color: #454545;
    display: flex;
    justify-content: center;
    align-items: center;
}

.upload__btn:hover {
    background-color: #64AEA81A;
    color: #454545;
    transition: all 0.3s ease;
}

.upload__img-wrap {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.upload__img-box {
    width: 92px;
    padding: 5px;
    margin: 0;
    background-color: #FFFFFF;
    border: 1px solid #4348634D;
    border-radius: 10px;
}

.upload__img-close {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0px;
    right: 0px;
    text-align: center;
    line-height: 24px;
    z-index: 1;
    cursor: pointer;
}

.upload__img-close:after {
    content: "✖";
    font-size: 14px;
    color: white;
}

.img-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100%;
}

@media only screen and (max-width:760px) {
    .upload__box {
        padding: 10px;
    }

    .upload__img-box {
        width: 72px;
    }

    .pro-btn .btn {
        width: auto;
        max-width: 100%;
        font-size: 16px;
        padding: 10px 25px;
    }
}

.show-password-input {
    display: none;
}

.forgot-password,
.page-404 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

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

ul.woocommerce-error li {
    color: #FF0000;
    border: 1px solid #FF0000;
    padding: 10px;
    border-radius: 10px;
}

.woocommerce {
    padding: 0;
}

.woocommerce a {
	color: #DC9B00 ;
}

.woocommerce-MyAccount-navigation {
    background-color: #FFFFFF;
    border: 1px solid #C5C5C5;
    border-radius: 0;
    overflow: hidden;
}

.woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce-MyAccount-navigation ul li {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: #121129;
}

.woocommerce-MyAccount-navigation ul li a {
    color: #121129;
    padding: 15px;
    display: block;
    background-color: #FFF2FE;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    background-color: #441177;
    color: #FFFFFF;
	position: relative;
}

.woocommerce-MyAccount-navigation ul li.is-active a:before {
    content: "\f105";
	font-family: "Font Awesome 6 Free";
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0, -50%);
	color: #fff;
	font-size: 15px
}

.woocommerce-breadcrumb a {
    color: #64AEA8;
}

.woocommerce-breadcrumb i {
    font-size: 12px;
    margin: 0 5px;
}

.woocommerce-notices-wrapper {
    display: none;
}

.woocommerce-result-count {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    color: #121129;
    padding: 10px 0;
    margin: 0;
}

.pagination {
    width: 100%;
}

.pagination h2 {
    display: none;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.nav-links .page-numbers {
    width: 40px;
    height: 40px;
    border: 1px solid #DFE3E8;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #5F5F5F;
}

.nav-links .page-numbers:hover {
    color: #3a7ddf;
    background-color: #f8f9fa;
}

.nav-links .current {
    border: 1px solid #000000;
    color: #000000;
}

.nav-links .placeholder {
    color: #5F5F5F;
    background-color: #e9ecef;
}

.page-error-section {
    padding: 25px 0;
}

.page-404 .header-search {
    margin: 15px auto !important;
}

.wp-block-woocommerce-cart {
    padding: 25px 0;
}

.wp-block-woocommerce-cart-order-summary-block {
    margin: 0;
    padding: 15px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 0px 24px 0px #43486333;
}

.wc-block-cart__submit-button {
    margin: 30px 0 !important;
    padding: 12px 25px;
    width: 100%;
    height: auto;
    background-color: #441177;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
    letter-spacing: 1%;
    text-transform: capitalize;
    display: block;
    transition: 0.5s !important;
}

.wc-block-cart__submit-button a {
    color: #FFFFFF;
    transition: 0.5s;
}

.wc-block-cart__submit-button:hover {
    color: #FFFFFF;
    background-color: #4A4A4A;
    transition: 0.5s !important;
}

.wp-block-woocommerce-cart-order-summary-coupon-form-block {
    margin-bottom: 10px;
    padding: 16px 15px !important;
    background-color: #FFF2FE;
    border: none !important;
    border-radius: 8px;
}

.is-large.wc-block-cart .wc-block-cart__totals-title {
    font-size: 26px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    color: #121129 !important;
    text-transform: capitalize !important;
    padding: 0 0 20px 0 !important;
    margin: 0 !important;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 400;
    color: #393939;
}

.wc-block-components-form .wc-block-components-text-input input[type="email"],
.wc-block-components-form .wc-block-components-text-input input[type="number"],
.wc-block-components-form .wc-block-components-text-input input[type="password"],
.wc-block-components-form .wc-block-components-text-input input[type="tel"],
.wc-block-components-form .wc-block-components-text-input input[type="text"],
.wc-block-components-form .wc-block-components-text-input input[type="url"],
.wc-block-components-form .wc-block-components-text-input select,
.wc-block-components-text-input input[type="email"],
.wc-block-components-text-input input[type="number"],
.wc-block-components-text-input input[type="password"],
.wc-block-components-text-input input[type="tel"],
.wc-block-components-text-input input[type="text"],
.wc-block-components-text-input input[type="url"],
.wc-block-components-text-input select {
    margin: 0 !important;
    padding: 10px 15px !important;
    height: auto !important;
    background-color: #FFFFFF !important;
    border: 1px solid #FFF2FE !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    color: #000000 !important;
}

.wc-blocks-components-select .wc-blocks-components-select__select {
    border: 1px solid #64AEA866 !important;
}

.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted,
.wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
    box-shadow: inset 0 0 0 1px #64AEA866 !important;
}

.wc-block-components-form .wc-block-components-text-input label,
.wc-block-components-text-input label {
    left: 15px !important;
    top: 50%;
}

.wc-block-components-totals-coupon__button {
    margin: 0 !important;
    padding: 12px 15px;
    min-height: inherit !important;
    background-color: #441177;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF !important;
    letter-spacing: 1%;
    text-transform: capitalize;
    display: block;
    transition: 0.5s !important;
}

.wc-block-components-form .wc-block-components-text-input input:autofill+label,
.wc-block-components-form .wc-block-components-text-input.is-active label,
.wc-block-components-text-input input:autofill+label,
.wc-block-components-text-input.is-active label {
    top: 0;
    transform: translateY(-8px) scale(.75) !important;
}

.wc-block-cart-items th span {
    font-family: "Inter", sans-serif !important;
    font-size: 26px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    color: #121129 !important;
    text-transform: capitalize !important;
    padding: 0 0 20px 0 !important;
    margin: 0 !important;
}

.is-large.wc-block-cart .wc-block-cart-items td {
    padding: 20px !important;
}

.is-large.wc-block-cart .wc-block-cart-items td:first-child {
    padding: 20px 0 !important;
}

.is-large.wc-block-cart .wc-block-cart-items td:last-child {
    padding: 20px 0 !important;
}

.is-large.wc-block-cart .wc-block-cart-items th:last-child {
    padding-right: 0 !important;
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    color: #121129;
    padding: 0;
    margin: 0;
}

.wc-block-components-formatted-money-amount,
.wc-block-components-product-price {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    color: #0D297A;
    padding: 0;
    margin: 0;
}

.wc-block-components-product-badge {
    display: none !important;
}

.wc-block-components-product-metadata {
    font-size: 16px !important;
    font-weight: 400;
    line-height: 1.4;
    color: #393939;
    padding: 0;
    margin: 0;
}

ul.wc-block-components-product-details {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
}

.wc-block-components-quantity-selector {
    border-radius: 0 !important;
}

.wc-block-components-quantity-selector {
    width: 120px !important;
    margin: 0 !important;
}

.wc-block-components-quantity-selector>.wc-block-components-quantity-selector__button--minus,
.wc-block-components-quantity-selector>.wc-block-components-quantity-selector__button--plus {
    border-radius: 0 !important;
}

.wc-block-components-quantity-selector::after {
    border: 1px solid #DC9B00 !important;
    border-radius: 0 !important;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
    min-width: 40px !important;
    min-height: 40px !important;
    font-size: 24px !important;
    font-weight: 500 !important;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:focus {
	box-shadow: none !important;
}

.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
    min-width: 40px !important;
    min-height: 40px !important;
}

.wc-block-cart-item__remove-link {
    margin: 0 !important;
    padding: 8px 15px !important;
    width: auto !important;
    height: auto !important;
    background-color: #E827511A !important;
    border: 1px solid #E827511A !important;
    border-radius: 8px !important;
    text-align: center !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 22px !important;
    text-align: center !important;
    color: #E82751 !important;
    letter-spacing: 1% !important;
    text-transform: capitalize !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: 0.5s !important;
}

.wc-block-cart-item__remove-link:hover {
    background-color: #E82751 !important;
    border: 1px solid #E82751 !important;
    color: #FFFFFF !important;
}

.wc-block-cart-item__quantity {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#ajax-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ajax-loader-spinner {
    text-align: center;
}

.rating-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.stars {
    width: 30px;
    font-weight: bold;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #64CE231A;
    border-radius: 4px;
    margin: 0 10px;
    overflow: hidden;
}

.fill {
    height: 100%;
    border-radius: 4px;
    width: 0;
    animation: fillAnim 2s forwards;
}

.count {
    width: 30px;
    text-align: right;
}

@keyframes fillAnim {
    from {
        width: 0;
    }

    to {
        width: var(--width);
    }
}

.star-5 {
    background-color: #00c853;
    --width: 70%;
}

.star-4 {
    background-color: #64dd17;
    --width: 50%;
}

.star-3 {
    background-color: #ffca28;
    --width: 51.3%;
}

.star-2 {
    background-color: #ff9800;
    --width: 66.6%;
}

.star-1 {
    background-color: #f44336;
    --width: 50%;
}

.wc-block-checkout__sidebar .wc-block-components-product-name {
    font-size: 18px;
    font-weight: 600;
}

.wp-block-woocommerce-checkout {
    padding: 50px 0 !important;
}

.wc-block-components-checkout-place-order-button,
.wp-block-button__link {
    margin: 0 !important;
    padding: 12px 15px;
    min-height: inherit !important;
    background-color: #441177;
    border: none;
    border-radius: 8px;
    font-size: 18px !important;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF !important;
    letter-spacing: 1%;
    text-transform: capitalize;
    display: block;
    transition: 0.5s !important;
}

.wp-block-button__link:hover {
	border: none;
	background-color: #4f7d79d9;
}

.wc-block-grid__products {
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 30px;
}

.wc-block-grid__product {
    max-width: calc(25% - 23px) !important;
    padding: 15px !important;
    background-color: #FFFFFF !important;
    border: 1px solid #4348634D !important;
    border-radius: 10px !important;
}

.edit-post-visual-editor .editor-block-list__block .wc-block-grid__product-title,
.editor-styles-wrapper .wc-block-grid__product-title,
.wc-block-grid__product-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    text-align: left;
}

.wc-block-grid__product-price {
    text-align: left;
    font-size: 22px !important;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0%;
    color: #0D297A !important;
}

.wc-block-grid__product-price ins {
	text-decoration: none;
}

.cr-all-reviews-shortcode .cr-summaryBox-wrap,
.cr-reviews-grid .cr-summaryBox-wrap {
    background-color: #FFFFFF !important;
}

.cr-ajax-search {
    display: none !important;
}

.cr-overall-rating-wrap {
    padding: 15px !important;
    background-color: #F9B53D1A;
    border-radius: 10px !important;
}

.cr-all-reviews-add-review {
    margin: 0 !important;
    padding: 12px 25px !important;
    width: auto !important;
    height: auto !important;
    background-color: #64AEA8 !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 22px !important;
    text-align: center !important;
    color: #FFFFFF !important;
    letter-spacing: 1% !important;
    text-transform: capitalize !important;
    display: inline-block !important;
    transition: 0.5s !important;
}

.cr-all-reviews-add-review:hover {
    background-color: #4A4A4A !important;
}

.ivole-meter {
    background: #64CE231A !important;
    background: -webkit-linear-gradient(top, #64CE231A, #64CE231A) !important;
    background: linear-gradient(to bottom, #64CE231A, #64CE231A) !important;
    background-color: #64CE231A !important;
    height: 8px !important;
    border-radius: 5px !important;
    box-shadow: none !important;
}

.ivole-meter .ivole-meter-bar {
    border-radius: 5px !important;
    box-shadow: none !important;
}

[data-rating="1"] .ivole-meter .ivole-meter-bar {
    background: #f44336 !important;
    background: -webkit-linear-gradient(top, #f44336, #f44336) !important;
    background: linear-gradient(to bottom, #f44336, #f44336) !important;
    background-color: #f44336 !important;
}

[data-rating="2"] .ivole-meter .ivole-meter-bar {
    background: #ff9800 !important;
    background: -webkit-linear-gradient(top, #ff9800, #ff9800) !important;
    background: linear-gradient(to bottom, #ff9800, #ff9800) !important;
    background-color: #ff9800 !important;
}

[data-rating="3"] .ivole-meter .ivole-meter-bar {
    background: #ffca28 !important;
    background: -webkit-linear-gradient(top, #ffca28, #ffca28) !important;
    background: linear-gradient(to bottom, #ffca28, #ffca28) !important;
    background-color: #ffca28 !important;
}

[data-rating="4"] .ivole-meter .ivole-meter-bar {
    background: #64dd17 !important;
    background: -webkit-linear-gradient(top, #64dd17, #64dd17) !important;
    background: linear-gradient(to bottom, #64dd17, #64dd17) !important;
    background-color: #64dd17 !important;
}

[data-rating="5"] .ivole-meter .ivole-meter-bar {
    background: #00c853 !important;
    background: -webkit-linear-gradient(top, #00c853, #00c853) !important;
    background: linear-gradient(to bottom, #00c853, #00c853) !important;
    background-color: #00c853 !important;
}

.cr-all-reviews-shortcode ol.commentlist li .comment-text p,
.cr-reviews-ajax-reviews .cr-reviews-ajax-comments .cr-ajax-reviews-list .comment-text p {
    margin: 0 !important;
}

.cr-all-reviews-shortcode .cr-review-form-item,
.cr-ajax-reviews-review-form .cr-review-form-item,
.cr-reviews-grid .cr-review-form-item,
.cr-qna-block .cr-review-form-item,
.cr-onsite-ratings .cr-review-form-rating,
.cr-review-form-rating-overall .cr-review-form-rating,
.cr-all-reviews-shortcode .cr-review-form-rating,
.cr-ajax-reviews-review-form .cr-review-form-rating,
.cr-reviews-grid .cr-review-form-rating,
.cr-all-reviews-shortcode .cr-review-form-comment,
.cr-ajax-reviews-review-form .cr-review-form-comment,
.cr-reviews-grid .cr-review-form-comment,
.cr-qna-block .cr-review-form-comment,
.cr-all-reviews-shortcode .cr-review-form-ne,
.cr-ajax-reviews-review-form .cr-review-form-ne,
.cr-reviews-grid .cr-review-form-ne,
.cr-qna-block .cr-review-form-ne,
.cr-all-reviews-shortcode .cr-form-item-media,
.cr-ajax-reviews-review-form .cr-form-item-media,
.cr-reviews-grid .cr-form-item-media,
.cr-all-reviews-shortcode .cr-review-form-buttons,
.cr-ajax-reviews-review-form .cr-review-form-buttons,
.cr-reviews-grid .cr-review-form-buttons,
.cr-qna-block .cr-review-form-buttons {
    max-width: 100% !important;
}

.cr-all-reviews-shortcode .cr-review-form-ne .cr-review-form-txt,
.cr-ajax-reviews-review-form .cr-review-form-ne .cr-review-form-txt,
.cr-reviews-grid .cr-review-form-ne .cr-review-form-txt,
.cr-qna-block .cr-review-form-ne .cr-review-form-txt {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    padding: .75rem !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #000000 !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #FFFFFF !important;
    border: 1px solid #64AEA866 !important;
    border-radius: 8px !important;
}

.cr-all-reviews-shortcode .cr-review-form-comment .cr-review-form-comment-txt,
.cr-ajax-reviews-review-form .cr-review-form-comment .cr-review-form-comment-txt,
.cr-reviews-grid .cr-review-form-comment .cr-review-form-comment-txt,
.cr-qna-block .cr-review-form-comment .cr-review-form-comment-txt {
    display: block !important;
    width: 100% !important;
    height: 120px !important;
    padding: .75rem !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #000000 !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #FFFFFF !important;
    border: 1px solid #64AEA866 !important;
    border-radius: 8px !important;
    overflow: auto !important;
    resize: none !important;
}

.cr-all-reviews-shortcode .cr-review-form-comment .cr-review-form-lbl,
.cr-all-reviews-shortcode .cr-review-form-name .cr-review-form-lbl,
.cr-all-reviews-shortcode .cr-review-form-email .cr-review-form-lbl,
.cr-ajax-reviews-review-form .cr-review-form-comment .cr-review-form-lbl,
.cr-ajax-reviews-review-form .cr-review-form-name .cr-review-form-lbl,
.cr-ajax-reviews-review-form .cr-review-form-email .cr-review-form-lbl,
.cr-reviews-grid .cr-review-form-comment .cr-review-form-lbl,
.cr-reviews-grid .cr-review-form-name .cr-review-form-lbl,
.cr-reviews-grid .cr-review-form-email .cr-review-form-lbl,
.cr-qna-block .cr-review-form-lbl {
    font-size: 16px !important;
    line-height: 1 !important;
    height: auto !important;
    color: #393939 !important;
}

.fa-star,
.fa-star-half-stroke {
    color: #ffb820;
}

.add-to-cart-button.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.add-to-cart-button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    width: 14px;
    height: 14px;
    border: 2px solid #fff;
    border-top: 2px solid #333;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    transform: translateY(-50%);
}

@keyframes spin {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

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

.share-popup {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 5px 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    min-width: 180px;
}

.share-popup-inner a {
    display: block;
    margin: 5px 0;
    color: #333;
    text-decoration: none;
}

.share-popup-inner a:hover {
    text-decoration: underline;
}

.cr-form-item-media-none {
    padding: 0 !important;
}

.cr-form-item-media-none .cr-form-item-media-icon {
    border-radius: 8px;
    background-color: #FFFFFF;
}

.cr-form-item-media-none span {
    font-size: 16px;
}

.cr-form-item-media-preview .cr-upload-images-containers {
    padding: 5px !important;
    border-radius: 8px;
    background-color: #FFFFFF;
}

.cr-form-item-media-preview .cr-form-item-media-add {
    border-radius: 8px;
    background-color: #FFFFFF;
}

.cr-form-item-media {
    background: #64AEA81A;
    border: 1px solid #64AEA81A;
    border-radius: 10px;
    padding: 24px !important;
    margin-bottom: 20px !important;
}

.cr-review-form-submit,
.cr-review-form-success {
    margin: 0 !important;
    padding: 12px 25px !important;
    width: auto !important;
    height: auto !important;
    background-color: #64AEA8 !important;
    border: none !important;
    border-radius: 8px !important;
    text-align: center !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 22px !important;
    color: #FFFFFF !important;
    letter-spacing: 1% !important;
    text-transform: capitalize !important;
    display: inline-block !important;
    transition: 0.5s;
}

.cr-review-form-cancel {
    margin: 0 !important;
    padding: 12px 25px !important;
    width: auto !important;
    height: auto !important;
    background-color: #FFFFFF !important;
    border: 1px solid #E82751 !important;
    border-radius: 8px !important;
    text-align: center !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 22px !important;
    color: #E82751 !important;
    letter-spacing: 1% !important;
    text-transform: capitalize !important;
    display: inline-block !important;
    transition: 0.5s;
}

@media only screen and (max-width:760px) {

    .cr-all-reviews-shortcode .cr-review-form-ne .cr-review-form-name,
    .cr-all-reviews-shortcode .cr-review-form-ne .cr-review-form-email,
    .cr-ajax-reviews-review-form .cr-review-form-ne .cr-review-form-name,
    .cr-ajax-reviews-review-form .cr-review-form-ne .cr-review-form-email,
    .cr-reviews-grid .cr-review-form-ne .cr-review-form-name,
    .cr-reviews-grid .cr-review-form-ne .cr-review-form-email,
    .cr-qna-block .cr-review-form-ne .cr-review-form-name,
    .cr-qna-block .cr-review-form-ne .cr-review-form-email {
        width: 100% !important;
    }
}

.cms-section {
    padding-bottom: 50px;
	padding-top: 30px;
}

.form-select:focus {
    box-shadow: none !important;
}

@media only screen and (max-width:760px) {
    .mb-5 {
        margin-bottom: 1.5rem !important;
    }

    .result-count {
        width: 100%;
        padding: 10px 0 0 0;
    }

    .filter-group {
        border: 0 !important;
        border-radius: 0 !important;
    }

    .breadcrumb-section .container {
        gap: 15px;
    }

    .wc-block-cart-item__quantity {
        flex-wrap: wrap;
        gap: 10px;
    }

    .editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name,
    table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
        font-size: 16px;
    }

    .wc-block-components-formatted-money-amount,
    .wc-block-components-product-price {
        font-size: 16px;
    }

    .wp-block-woocommerce-cart,
    .wp-block-woocommerce-checkout {
        padding: 20px 0 !important;
    }

    .wp-block-woocommerce-cart-order-summary-coupon-form-block {
        padding: 10px !important;
    }

    .wc-block-components-product-name {
        padding: 0 !important;
        font-size: 16px !important;
    }

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

    .input-box input {
        margin: 5px 0;
    }

    .wc-block-grid__products {
        padding: 0 !important;
    }

    .wc-block-grid__product {
        max-width: 100% !important;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {

    .wc-block-components-sidebar-layout .wc-block-components-main,
    .wc-block-components-sidebar {
        padding: 0 !important;
        width: 100% !important;
    }
	
	.woocommerce {
    	padding: 20px 0 50px 0;
	}
}

.searchwp-live-search-results {
	position: fixed !important;
}

@media (max-width: 992px) {
	.searchwp-live-search-results-showing {
		left: unset !important;
		right: 30px;
		width: 300px !important;
		max-width: 300px !important;
	}
}

/* 27-05-25 */
.wc-blocks-components-select .wc-blocks-components-select__select {
	border-radius: 8px !important;
}

ul.order_details {
	list-style: none;
	padding: 0;
}
ul.order_details li {
	margin: 0 0 12px 0;
}

ul.custom-order-page {
	list-style: none;
	padding: 0;
}

ul.custom-order-page li {
	margin: 0 0 12px 0;
}

ul.custom-order-page li:last-child {
	margin: 0;
}

ul.custom-order-page li strong {
	font-weight: 700;
}

#btn-razorpay,
#btn-razorpay-cancel {
	border: none;
	outline: none;
	font-size: 18px;
    font-weight: 500;
    line-height: 24px;
	color: #ffffff;
    text-align: center;
	background: #64AEA8;
	border-radius: 8px;
	padding: 10px 25px;
}

#btn-razorpay-cancel {
	background: red;
	margin-left: 6px;
}

#btn-razorpay:hover,
#btn-razorpay-cancel:hover {
	opacity: 0.8;
}

.shop_table {
	width: 100%;
	max-width: 700px;
}

.shop_table th,
.shop_table td {
	padding: 8px;
}

.shop_table thead th {
	text-transform: uppercase;
}

.product-name ul {
	list-style: none;
	padding: 0;
}

.product-name ul li {
	margin: 10px 0 0 0;
}

.product-name ul li p {
	padding: 6px 0 0 0;
}

.product-quantity {
	min-width: 90px;
}

#payment {
	padding: 0 0 0 8px;
}

.payment_methods.methods {
	list-style: none;
	padding: 0;
}

.payment_methods.methods li {
	margin: 0 0 15px 0;
}

.payment_methods.methods li:last-child {
	margin: 0;
}

.payment_methods.methods li p {
	padding: 8px 0 0 0;
}

.form-row button {
	border: none;
	outline: none;
	font-size: 18px;
    font-weight: 500;
    line-height: 24px;
	color: #ffffff;
    text-align: center;
	background: #64AEA8;
	border-radius: 8px;
	padding: 10px 25px;
	margin: 15px 0 0 0;
}

.account-orders-table {
	max-width: unset;
}

.account-orders-table td {
	padding: 10px;
}

.row:has(.account-orders-table) {
	row-gap: 20px;
}

a.button.pay,
a.button.view,
a.button.cancel {
	display: inline-block;
	font-size: 14px;
	line-height: 1;
	font-weight: 600;
	background-color: #441177;
    color: #FFFFFF;
	border-radius: 5px;
	padding: 6px 12px;
	margin: 0 4px;
}

a.button.view {
	background-color: #DC9B00;
}

a.button.cancel {
	background-color: red;
}

a.button.pay:hover,
a.button.view:hover,
a.button.cancel:hover {
	opacity: 0.7;
}

p.woocommerce-thankyou-order-received {
	font-size: 18px;
    line-height: 1.5em;
    font-weight: 700;
    padding: 0 0 20px 0;
}

@media (min-width: 767px) and (max-width: 1023px) {
	.product-card.filter-archive figure {
		width: 220px;
        height: 140px;
	}
}

@media (max-width: 767px) {
	#btn-razorpay, 
	#btn-razorpay-cancel {
		font-size: 15px;
		padding: 8px 22px;
	}
	
	.payment_method_razorpay img {
		display: none;
	}
	
	.form-row button {
		font-size: 15px;
		padding: 8px 20px;
	}
	
	.woocommerce-MyAccount-content {
		overflow-x: auto;
	}
	
	.account-orders-table {
		width: max-content;
	}
}

@media (min-width: 1200px) {
	.woocommerce-customer-details h2,
	.woocommerce-order-details h2 {
		font-size: 32px !important;
		padding: 0 0 10px 0;
	}
}

.wc-block-cart-item__image {
	min-width: 100px;
	margin-right: 20px;
	padding-right: 0 !important;
}

.wc-block-cart-item__product {
	padding-left: 20px !important;
}

.tinv-header {
	display: none;
}

.tinv-wishlist table th {
	font-size: clamp(18px, 1.528vw, 22px);
	color: #441177;
}

.product-remove button {
	border: none;
	background: red !important;
	color: #fff !important;
}

.tinv-wishlist .product-thumbnail {
	min-width: 120px !important;
}

.product-name a {
	font-size: clamp(16px, 1.25vw, 18px);
	line-height: 1.5em;
	color: #441177;
}

.product-name a:hover {
	color: #FFB300;
}

.product-action button {
	border: none;
	background: transparent;
	border: 1px solid #441177;
	font-size: clamp(14px, 1.111vw, 15px);
	color: #441177;
	line-height: 1;
	padding: 10px;
	font-weight: 600;
	transition: 0.3s;
}
.product-action button:hover {
	background: #441177;
	color: #fff;
}

.product-stock p {
	color: green;
}

.buy-now-btn button {
	background: #DC9B00;
}

.buy-now-btn button:hover {
	background: #ffb30094;
}

.wc-block-checkout__payment-method .wc-block-components-radio-control.disable-radio-control .wc-block-components-radio-control__input {
	display: block !important;
}

.wc-block-components-sidebar-layout .wc-block-components-main {
	width: 55% !important;
	padding-right: 25px !important;
}

.wc-block-components-sidebar {
	width: 45% !important;
}

.wc-block-checkout__payment-method .wc-block-components-radio-control.disable-radio-control .wc-block-components-radio-control__option {
  padding-left: 48px !important;
}

.tinv-modal-inner button {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #441177;
	background: #441177;
	font-size: 14px;
	line-height: 1;
	color: #fff;
	padding: 10px 20px;
}

.tinv-modal-inner button i {
	margin-bottom: 3px;
}

@media (max-width: 767px) {
	.wc-block-components-sidebar-layout .wc-block-components-main {
	  width: 55% !important;
	  padding-right: 25px !important;
	}
	
	.wc-block-components-sidebar {
	  width: 100% !important;
	}
}

@media (max-width: 575px) {
	.wc-block-cart-item__image {
		min-width: 80px !important;
	}
	
	.wc-block-cart-item__product {
	  padding-left: 8px !important;
	}
}

/* inner pages style */
.news-single-area h2 {
	margin-top: 0;
}

.wpforms-field-container {
	border: 1px solid #FFB300 !important;
	background: #ffb3001c  !important;
	padding: 20px !important;
}

.wpforms-field-large,
.wpforms-field-medium {
	font-size: 1rem !important;
	font-weight: 400 !important;
	line-height: 1.5 !important;
	color: #495057 !important;
	background-color: #fff !important;
	border: 1px solid #ced4da !important;
}

.wpforms-field-large:focus,
.wpforms-field-medium:focus {
	outline: none !important;
	border-color: #ced4da !important;
	box-shadow: none !important;
}

.wpforms-field-medium {
	resize: none !important;
}

.wpforms-field p {
	margin: 0 0 10px !important;
}

.wpforms-submit {
	min-width: 120px;
	background: #441177 !important;
	margin: 15px 0 0 !important;
}

.wpforms-submit:hover {
	background: #441177a6 !important;
}

.news-single-area p {
	margin: 0 0 12px;
}

.news-single-area p i {
	margin-right: 6px;
}

.news-single-area p:last-of-type {
	margin: 0;
}