@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
	--primary: #feeb9c;
	 --secondary: #ADEBB3;
	--white: #fff;
	--black: #333;
}
html {
  scroll-behavior: smooth;
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: red; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
}
body {
	margin:0;
	padding:0;
	font-family: "Manrope", sans-serif;
	font-family: "Roboto", sans-serif;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="password"], input[type="date"], textarea, select {
    background: none;
    border: solid 1px #ddd;
    color: #444;
    font-size: 15px;
    line-height: normal;
    margin: 0 0 10px;
    padding: 10px 15px;
    width: 100%;
    outline: 0;
    border-radius: 0;
   font-family: "Roboto", sans-serif;
}
input[type="submit"] {
    color: var(--white);
    background: var(--black);
    text-transform: uppercase;
    border: none;
    padding: 8px 25px;
    font-size: 14px;
    border: 0;
    letter-spacing: 0.8px;
    cursor: pointer;
    outline: none;
    border-radius: 0;
    font-family: "Roboto", sans-serif;
    border-radius: 2px !important;
}
input[type="submit"]:hover {
	background: var(--black);
	color: var(--white);
	transition: 0.8s;
}
textarea {
	height: 125px;
	margin-bottom: 5px;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 15px 0;
	color: var(--black);
	font-weight: 500;
	text-transform: inherit;
	line-height: inherit;
	letter-spacing: 0.5px;
	font-family: "Manrope", sans-serif;
}
h1 {
	font-size:30px
}
h2 {
	font-size:26px
}
h3 {
	font-size: 22px;
}
h4 {
	font-size: 20px;
}
h5 {
	font-size:18px
}
h6 {
	font-size:16px
}
p {
    padding: 0;
    margin: 0 0 10px 0;
    font-family: "Roboto", sans-serif;
    color: #333;
    font-size: 16px;
    line-height: 28px;
}
ul, li, a {
    list-style-type: none;
    font-family: Inter;
    color: #333;
    font-size: 15px;
    line-height: 24px;
    font-family: "Manrope", sans-serif;
}

a:hover {
	transition:0.8s;
	text-decoration:none;
}
.heading {
    color: var(--dark);
    letter-spacing: 0.5px;
    font-size: 34px;
    font-weight: 300;
    text-align: center;
    margin: 0 0 29px;
    text-transform: capitalize;
}
.leftheading {
    font-size: 40px;
    margin-bottom: 25px;
}
.heading span {
    color: var(--primary);
}
.subheading {
width: 60%;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 17px;
    display: block;
    letter-spacing: 0.5px;
    font-weight: 500;
	font-family: "Manrope", sans-serif;
}
.zoomeffect {
	overflow: hidden;
	position:relative;
}
.zoomeffect img {
	transition: transform 0.8s ease-in-out;
}
.zoomeffect:hover img {
	transform: scale(1.1);
}


.smoicons {
    background: var(--white);
    top: 250px;
    z-index: 9;
    padding: 3px 3px;
    border-radius: 0 5px 5px 0;
    position: fixed;
    border: 1px solid #dfdfdf;
}
.smoicons li a {
    background: #0165E1;
    height: 38px;
    width: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    margin: 5px 0;
    color: var(--white);
}
.smoicons li:nth-child(2) a {
    background: #1DA1F2;
}
.smoicons li:nth-child(3) a {
    background: radial-gradient(circle at 33% 100%, #fed373 4%, #f15245 30%, #d92e7f 62%, #9b36b7 85%, #515ecf);
}
.smoicons li:nth-child(4) a {
    background: #0A66C2;
}

/* Loader */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000000;
}
.pageloader .load {
    color: var(--white);
    letter-spacing: 3px;
    margin-top: 15px;
}
.overlay .overlayDoor:before, .overlay .overlayDoor:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background: #111;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  transition-delay: 0.8s;
}
.overlay .overlayDoor:before {
  left: 0;
}
.overlay .overlayDoor:after {
  right: 0;
}
.overlay.loaded .overlayDoor:before {
  left: -50%;
}
.overlay.loaded .overlayDoor:after {
  right: -50%;
}
.overlay.loaded .overlayContent {
  opacity: 0;
  margin-top: -15px;
}
.overlay .overlayContent {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
.overlay .overlayContent .skip {
  display: block;
  width: 130px;
  text-align: center;
  margin: 50px auto 0;
  cursor: pointer;
  color: #fff;
  font-family: "Nunito";
  font-weight: 700;
  padding: 12px 0;
  border: 2px solid #fff;
  border-radius: 3px;
  transition: 0.2s ease;
}
.overlay .overlayContent .skip:hover {
  background: #ddd;
  color: #444;
  border-color: #ddd;
}

.loader {
  width: 128px;
  height: 128px;
  border: 3px solid #fff;
  border-bottom: 3px solid transparent;
  border-radius: 50%;
  position: relative;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader .inner {
  width: 64px;
  height: 64px;
  border: 3px solid transparent;
  border-top: 3px solid #fff;
  border-radius: 50%;
  -webkit-animation: spinInner 1s linear infinite;
          animation: spinInner 1s linear infinite;
}

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

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



/* BRANDING SLIDER */

.branding {
    padding-top: 15px;
}
.brandingsldr-item img {
    border-radius: 15px !important;
}

/* Offer Modal */

.offermodal .modal-body {
    padding: 0;
}
.offermodal .modal-dialog {
    max-width: 600px;
}
.offermodal img {
    width: 100%;
    height: auto;
}
.offermodal .btn-close {
    position: absolute;
    right: 15px;
    top: 15px;
}
.offermodal .btn-close {
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: 1111;
    background-color: var(--white);
    opacity: 1;
    padding: 5px;
    border-radius: 50%;
}


/* NOTIFICATION BAR CSS */

.notification {
    background: #000;
    padding: 5px 0;
    margin: 0;
}
.notification p {
    margin: 0;
    color: var(--white);
    font-size: 15px;
}
.marquee__content {
    margin: 0;
}
/* HEADER SECTION CSS */

header {
    border: 0;
    border-radius: 0;
    border-top: 1px solid #F0F0F0;
    box-shadow: 0px 15px 10px -15px rgb(0 0 0 / 11%);
}
header .row {
    align-items: center;
}
.menu-customer-service-container li {
    border-right: 1px solid #0500501c;
    padding-right: 10px;
}
.hdrcontact img {
    width: 26px;
}
.hdrsocial {
    display: flex;
    justify-content: end;
    align-items: center;
    column-gap: 20px;
}
.middlehdr .col-sm-2 {
    justify-content: end;
    display: flex;
}
.hdrcontact span {
display: block;
    color: var(--white);
    font-size: 20px;
}
.hdrcontact a {
    color: var(--white);
    font-weight: 400;
    font-size: 17px;
    column-gap: 10px;
}
.middlehdr .wp-block-search__inside-wrapper {
    position: relative;
    margin: 0 20px;
}
.middlehdr .wp-block-search__input {
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    position: relative;
}
.middlehdr button.wp-block-search__button.wp-element-button {
    position: absolute;
    right: 3px;
    top: 3px;
    padding: 9px 15px;
    border-radius: 50px;
    background: #d8232f;
    border: none;
    color: #fff;
}
.freeshiping p {
    margin: 0;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--white);
    letter-spacing: .5px;
}
.top-smo {
    border-left: 1px solid #ffffff21;
    border-right: 1px solid #ffffff21;
    padding: 6px 15px;
}
.top-smo li a i {
    color: var(--white);
    font-size: 13px;
}
.top-contact {
    display: flex;
    justify-content: end;
    align-items: center;
    column-gap: 10px;
}
.contactfaqs li {
    border-right: 1px solid #ffffff21;
    padding: 4px 10px 4px 0;
}
.contactfaqs li a {
    text-transform: uppercase;
    font-size: 13px;
    color: var(--white);
}


/* SEARCH BAR CSS */

.search-bar {
    background: #f3f3f3;
    border: 1px solid #f1f1f1;
    border-radius: 2px;
    overflow: hidden;
}
.search-bar select {
    width: 50%;
    border: none;
    padding: 5px;
    font-size: 15px;
}
header select {
    border: none;
}
header select {
    border: none;
    padding: 25px 0;
    border-right: 1px solid #F0F0F0;
}


.topbar {
    padding: 8px 0;
}
.search-bar form {
    position: relative;
}
.search-bar form input {
    border: none;
    padding: 9px 10px;
    margin: 0;
    border-left: 1px solid #e3e3e3;
}
.wp-block-search__inside-wrapper {
    width: 100% !important;
}
.search-bar form button {
    background: #000;
    font-family: 'Font Awesome 5 Free';
    color: var(--white);
    font-weight: 500;
    padding: 9px 15px;
    border-radius: 0;
    border: none;
    font-size: 19px;
}



.topbar h1 span {
    COLOR: var(--primary);
}
.topbar h1 {
    margin: 0;
    font-weight: 600;
    font-size: 32px;
}
.topbar a img {
    width: 240px;
    height: auto;
    border-radius: 10px;
}
.topbar .row {
	align-items: center;
}


.topbar .col-sm-8 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.search-form {
    width: 60%;
}
.search-form form {
    position: relative;
}
.topbar .search-form label {
    display: none;
}
.topbar .search-form input[type="search"] {
    font-size: 14px;
    padding: 9px 20px 8px !important;
    border: 1px solid #ccc;
    outline: none;
    border-radius: 6px;
}
.topbar .search-form .wc-block-product-search .wc-block-product-search__button {
    width: 50px;
    margin: 0;
    border: none;
    background: url(../images/searchicon.png)no-repeat center center/contain;
    background-size: 18px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    z-index: 999999;
    padding: 11px;
}
.topbar .search-form .wc-block-product-search .wc-block-product-search__button svg{
	display:none;
}

.topbar ul {
    display: flex;
    column-gap: 12px;
    align-items: center;
    position: relative;
}
.topbar li img {
    width: 20px;
}
.topbar ul li {
    position: relative;
}
.topbar ul li .cartcount {
    position: absolute;
    top: -14px;
    background: var(--primary);
    color: #fff;
    padding: 1px 5px;
    line-height: normal;
    right: 3px;
    border-radius: 50%;
    font-size: 13px;
}
/* .menubar.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    border-radius: 0;
    margin: 0;
    background: var(--white);
    box-shadow: 2px 2px 13px #0000001a;
    z-index: 999;
} */
.menubar .row {
    align-items: center;
}
.menubar .col-sm-9 {
    display: flex;
    justify-content: space-between;
}
.menubar img {
    width: 150px;
}
.menubar ul.hdrsocial {
    display: flex;
    justify-content: flex-end;
    column-gap: 16px;
    align-items: center;
}
.hdrsocial li a {
    text-transform: uppercase;
    font-size: 14.5px;
    font-weight: 500;
}
.menubar ul.hdrsocial li, .menubar ul.hdrsocial li a {
    color: var(--black);
}
.shpngcrt {
    position: relative;
}
.shpngcrt span {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #e71f1f;
    color: var(--white);
    height: 18px;
    width: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    font-size: 11px;
}
.hdrsocial li img {
    width: 20px;
}
.shpngcrt figure {
    margin: 0;
}


/* MAIN SLIDER SECTION CSS */

.bannersldr-item img {
    border-radius: 12px;
}


/* Scrolling Promotions */

.enable-animation {
    background: #000;
    padding: 13px 0 10px;
}
ul.marquee__content span {
    color: #fff;
}
.enable-animation ul li {
    display: inline-flex;
    font-weight: 400;
    letter-spacing: .3px;
    align-items: center;
    margin: 0 15px;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--black);
}
.enable-animation ul li img {
    width: 25px;
    margin-right: 10px;
}
        .marquee ul li{
          color:{{settings.carttext_color}};
        }  
        .marquee {
  --gap: 1rem;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    -webkit-animation-play-state: paused !important;
    animation-play-state: paused !important;
  }
}

.enable-animation .marquee__content {
  -webkit-animation: scroll 15s linear infinite;
  animation: scroll 15s linear infinite;
}

.marquee--pos-absolute .marquee__content:last-child {
  position: absolute;
  top: 0;
  left: 0;
}

.enable-animation .marquee--pos-absolute .marquee__content:last-child {
  -webkit-animation-name: scroll-abs;
  animation-name: scroll-abs;
}

@keyframes scroll-abs {
  from {
    transform: translateX(calc(100% + var(--gap)));
  }

  to {
    transform: translateX(0);
  }
}
/* Hero Section */
.image-wrapper {
  position: relative;
  overflow: visible;
}

.image-wrapper::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid #000;
  z-index: 9; /* higher than the image */
  pointer-events: none;
}

.image-wrapper img {
  display: block;
  position: relative; /* keeps image below border */
  z-index: 1;
  transition: transform 0.6s ease;
}

.image-wrapper:hover img {
  transform: scale(1.1);
}

.image-content {
  bottom: 20px;
  left: 20px;
  z-index: 3;
  max-width: 80%;
}
.image-content.position-absolute.text-white {
    transform: translate(12px, -18px);
}
section.two-image-section.py-5 {
    padding: 0px 44px;
}
.image-content h3 {
    font-size: 38px;
    margin-bottom: 10px;
    font-weight: 400;
    font-family: "Playwrite AU NSW", cursive;
    color: #000;
}

.image-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #5582c5;
    font-weight: 500;
}

.btn-hover-black {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    color: #000;
    background: transparent;
    font-weight: bold;
    border: 1px solid var(--primary);
    text-decoration: none;
    overflow: hidden;
    transition: color 0.4s ease;
}

.btn-hover-black::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 0;  /* overlay below the text */
    transition: left 0.4s ease;
}

.btn-hover-black span {
    position: relative;
    z-index: 1;  /* text above overlay */
}

.btn-hover-black:hover::before {
    left: 0;
}

.btn-hover-black:hover {
    color: #000 !important; /* text color on hover */
}


/* Home Category Section */
.category-section {
    padding: 22px 0 60px;
    background-color: #b169691a;
}
.category-title {
    font-size: 37px;
    text-transform: capitalize;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 500;
}

.category-desc {
  color: #777;
  font-size: 16px;
  margin-bottom: 50px;
}

.category-item {
  text-align: center;
  padding: 15px;
}

.category-item img.category-icon {
    /* max-width: 90px; */
    margin-bottom: 20px;
    width: 118px;
    object-fit: cover;
    object-position: center;
}
.category-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.category-item p {
  font-size: 14px;
  color: #555;
  max-width: 250px;
  margin: 0 auto;
}


/* SHOP NOW SECTION CSS */

.shopnow {
    background: url(../images/offerbg.webp);
    padding: 130px 0 130px 50px;
    background-size: cover;
    border-radius: 15px;
    margin-top: 30px;
}
.shopnow-info {
    width: 55%;
}
.shopnow-info h3 {
    font-size: 40px;
    margin-bottom: 10px;
}
.shopnow-info p {
    margin-bottom: 15px;
}



/* SUMMER COLLECTION PRODUCT */

.summercollec {
    padding: 40px 0 55px;
}
.summercollec .row {
    row-gap: 22px;
}

/* BEST SELLER PRODUCTS CSS */

.bestseller {
    padding: 50px 0 40px;
}


/* REVIEW SECTION CSS */

.review {
    background: linear-gradient(#ffffff8c, #ffffff75), url(../images/reviewbg.png);
    padding: 35px 0 50px;
    text-align: center;
}
.reviewsldr .testimonials-item {
margin:0 6px !important;
}
.testimonials .row {
    row-gap: 25px;
}
.testimonial .slick-dots {
    bottom: -45px;
}
.testimonials-item {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 3px;
    box-shadow: inset 0 0 30px #ebebeb;
}
.testimonial-profile {
    column-gap: 15px;
}
.testimonial-profile img {
    border-radius: 50px;
}
.testimonials-item p {
    margin-bottom: 15px;
}
.slick-dots  button {
    background: var(--primary) !important;
}
.slick-active button{
	border: 1px solid #000 !important;
}
.slick-dots li button {
    width: 15px !important;
    height: 15px !important;
    margin-top: 29px !important;
}

/* PRODUCT BANNER CSS */

.productbanner {
    background: linear-gradient(45deg, #020026c7, #020026c7), url(../images/product-banner.webp);
    padding: 110px 0;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}
.productbanner h2 {
    color: var(--white);
    font-size: 45px;
    font-weight: 600;
}
.productbanner p {
    font-size: 18px;
}
.productbanner .btn-primary {
    padding: 7px 25px;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-size: 16px;
    border: 1px solid var(--white);
    background: #ed7f1d52;
}
.productsldr img {
    width: 100% !important;
}

/* Home About */
.about_section {
    padding: 7px 0px;
}
.homeabout{
	padding:60px 0;
background:url(../images/aboutbg.jpg);	
	background-attachment:fixed;
	background-size:cover;
}
.homeabout h2 span {
    font-size: 18px;
    display: block;
    color: var(--primary);
    padding-bottom: 7px;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.about_small_heading {
    font-style: italic;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: "Playwrite AU NSW", cursive;
    font-size: 30px;
}
.about_main_title {
    font-weight: 200;
    font-size: 36px;
    margin-bottom: 20px;
}
.about_description {
    line-height: 1.6;
    color: #555;
}
.about_stats .stat h3 {
    font-size: 2rem;
    color: #3a8c87;
}
.about_stats .stat span {
    display: block;
    font-size: 0.9rem;
    color: #777;
}
.about_image_wrapper {
    position: relative;
    display: inline-block;
}


.about_image_wrapper::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -11px;
    bottom: 13px;
    right: 10px;
    border: 1px solid #000;
    pointer-events: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
    z-index: 2;
    margin-bottom: -22px;
}
.about_image_wrapper:hover::before {
    transform: scale(1.05);
    border-color: #000; /* change color on hover */
	
}
.about_image_wrapper:hover {
transition: all 0.3s ease;
}
.about_image_wrapper .play_button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #fff;
    background: rgba(0,0,0,0.4);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.about_image_wrapper .play_button:hover {
    background: rgba(0,0,0,0.6);
}
.about_counters {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
	 margin: 14px 0px;
}

.counter {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* space between number and text */
}

.counter h3 {
    margin: 0;
    font-size: 2rem;
    font-weight: 200;
    font-size: 40px;
    color: var(--primary);
}

.counter span {
    font-size: 30px;
    color: #4f4949;
}

/* Home full section */

.jewel {
    text-align: center;
    background: linear-gradient(45deg, black, transparent), url(https://webzensys.com/work/96jewellery.com/wp-content/uploads/2026/02/jewellerybg.jpg);
    padding: 100px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.jewel span {
    background: var(--primary);
    padding: 9px 30px;
    border-radius: 50px;
    margin-bottom: 20px;
    display: inline-block;
    color: #000;
    font-weight: 500;
}
.jewel h2 {
    color: #fff;
    font-size: 40px;
    width: 80%;
    margin: 0 auto;
    line-height: 50px;
    margin-bottom: 30px;
}
.jewel a {
    background: #000;
    display: inline-block;
    color: #fff;
    padding: 8px 30px;
    border-radius: 50px;
    text-decoration: none;
}


/* Before pseudo-element for sliding background */
.cta_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    transition: left 0.3s ease;
}

.cta_btn:hover {
    color: #000;
}

.cta_btn:hover::before {
    left: 0;
}




/* Collecton */
.collection {
    padding: 55px 0 35px;
    background: #f1f1f1;
}
.collection-item {
    text-align: center;
    display: flex !important;
    justify-content: center;
}
.collectionsldr .slick-slide {
    margin: 0 !important;
}
.collection-item figure {
    padding: 13px 13px 0;
    position: relative;
    width: 232px !important;
    height: 220px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    outline: solid 1px #0066b012;
    overflow: hidden;
    background: var(--white);
    margin-bottom: 20px;
}
.collection-item h3 {
    margin: 5px 0 0;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: .5px;
}

.collection-item strong {
    display: block;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 3px;
}
.collection-item i {
    color: var(--white);
    font-size: 23px;
    background: var(--primary);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -6px -6px 0px #f8000061;
}
.collection-item p {
    margin: 0;
}


/* Home Categories */

.category {
    padding: 20px 0;
}
.categories-info h3 {
    font-size: 18px;
    margin: 15px 0 0;
    font-weight: 400;
}
.category-item a {
    color: var(--white) !important;
    border: 1px solid #ffffff40 !important;
    display: block;
    width: fit-content;
    margin: 15px auto 0;
}
.category-item {
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}
.category-item img {
    border-radius: 15px;
    height: 100px;
    object-fit: cover;
}
.category-item h3 {
    font-size: 22px;
    font-weight: 500;
    margin: 10px 0 0;
}
.homecat-caption {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 20px;
}
.homecat-item h3 {
    margin-bottom: 40px;
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 10px;
    font-size: 25px;
}
.category-info {
    position: absolute;
    text-align: center;
    bottom: 50px;
    width: 100%;
}
.category-info .btn-primary {
    padding: 8px 30px;
    font-size: 14px;
    color: var(--primary);
    border: 1px solid #00000059;
    letter-spacing: .5px;
    font-weight: 500;
}

/* ABOUT SECTION CSS */

.about {
    background: #f7f9ff;
    padding: 60px 0;
}
.about img {
    width: 100%;
    height: auto;
}
.about-content .leftheading {
    font-size: 40px;
	margin-bottom:10px;
}

/* PRODUCT SECTION CSS */
.themart-special-product-section {
    padding: 50px 0;
}
.center_item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    height: 100%;
    flex-direction: column;
}

/* .product {
    padding: 50px 13px;
    background: #f7f7f7;
} */
.product {
    padding: 50px 20px;
    background: #f7f7f7;
}
.product .row {
    row-gap: 40px;
}
.product-item {
    position: relative;
    padding: 20px 16px;
}
.product-item figure {
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}




/* .product-item img {
    width: 100% !important;
    height: 260px !important;
    object-fit: cover !important;
    transition: transform 0.3s ease;
    display: block;
} */

.product-item img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    transition: transform 0.3s ease;
    display: block;
}

/* Border using ::before */
.product-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #000; /* Border color */
    box-sizing: border-box;
    transform: scale(1);
    transition: transform 0.3s ease;
    pointer-events: none;
    z-index: 2;
}
#filter_360_1 {
    display: block !important;   /* make it render */
    visibility: visible !important; /* ensure it's not hidden */
    opacity: 1 !important; /* ensure it's not transparent */
}


/* Hover effect */
.product-item:hover img {
    transform: scale(1.05);
}

.product-item:hover::before {
    transform: scale(1.05); /* Zoom border along with image */
}




.product-icons {
	position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    width: 100%;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .7s;
    column-gap: 10px;
}
.product-info h3 {
    margin-bottom: 10px;
}
.product-info h3 a {
    font-size: 23px;
    color: var(--black);
    letter-spacing: 0;
    font-weight: 300 !important;
    text-decoration: none;
}
.product-info .btn-primary {
    padding: 15px 50px;
}
.product-icons {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    width: 100%;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .7s;
    column-gap: 10px;
}
.product-info bdi {
    display: block;
    color: var(--black);
    margin-bottom: 10px;
}

.product-icons i {
    font-size: 16px;
    color: #fff;
    background-color: var(--primary);
    padding: 10px;
    border-radius: 2px;
    transition: background-color 0.3s;
}
.product-icons i:hover {
  background-color: #ff5e00; 
}
.product-category a {
    color: rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));
    text-decoration: none;
}
.price-btn-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #f5f5f5;
    padding: 5px 10px;
    border-radius: 6px;
    margin-top: 10px;
    border: 1px solid #000;
}


.price-btn-box .product-price {
    font-size: 18px;
    font-weight: 600;
    color: #e65c4f;
    padding-right: 29px;
    margin-right: 15px;
    border-right: 1px solid #000;
}


.price-btn-box .btn-border {
    padding: 6px 14px;
    font-size: 17px;
    background-color: transparent;
    color: #000;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.price-btn-box .btn-border:hover {
    background-color: #000;
    color: #fff;
}

/* Leading */

.leading {
    padding: 130px 0;
    background: url(../images/leadingbg.jpg);
}

/* Home Products */

.homeprdct {
    padding: 55px 0 75px;
}
.homeprdct .col-sm-4 {
    width: 25%;
}
.productlist:hover{
	transform:translateY(-8px);
	border: 1px solid var(--primary);
}
.homeprdct a.button.wp-element-button {
    display: none !important;
}
.productlist-box hr {
    background-image: linear-gradient(to left, #a3a3a3, #a3a3a3 30%, #a3a3a3);
}
.productlist img {
width: 100%;
    height: 230px !important;
    object-fit: cover;
}
.productlist-box h4 {
    letter-spacing: 0;
    line-height: 22px;
    margin: 0 0 15px;
}
.productlist-box h4 a {
    font-size: 20px !important;
    line-height: 25px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.productlist-box p {
    color: var(--primary) !important;
    margin: 15px 0;
    font-size: 17px;
    font-weight: 600;
}



/* WHY CHOOSE US SECTION CSS */

.whychoose {
    background: linear-gradient(#0066b0d9, #000000b0), url(https://wallpapers.com/images/hd/social-network-techno-geometric-abstract-fvdlzra89t8t4x0e.jpg);
    padding: 55px 0;
    background-attachment: fixed;
    background-size: cover;
}
.whychoose-item img {
    width: 80px;
    filter: invert(1) brightness(100);
}
.whychoose-item h3 {
    margin-bottom: 5px;
}
.whychoose-item {
    background: #ffffff08;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #ffffff17;
    backdrop-filter: blur(5px);
}
.whychoose-item h3, .whychoose-item p {
    color: #fff;
}
.whychoose-item h3 {
    margin: 15px 0 5px;
    font-size: 20px;
}
.whychoose-item p {
    margin: 0;
}
.whychoose-thumb img {
    height: 100%;
    object-fit: cover;
    clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
    border-radius: 10px;
}


/* Gallery Section */
.gallery_section {
    padding: 50px 35px;
    background: #ffcabe;
}
.gallery-text .section-heading {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 19px;
    font-weight: 600;
    font-family: "Playwrite AU NSW", cursive;
}
.gallery-text .section-title {
    font-size: 37px;
    font-weight: 200;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0px;
}
.gallery-text .section-desc {
    font-size: 15px;
    color: #555;
    max-width: 600px;
}
.btn-view-all {
    display: inline-block;
    padding: 10px 20px;
    background: #c0392b;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}
.btn-view-all:hover {
    background: #a93226;
}
/* .gallery-slider .gallery-slide {
    padding: 10px;
}
.gallery-slider .gallery-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}
 */
.gallery-slider .gallery-slide {
    padding: 10px;
}
.gallery-slider .gallery-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    cursor: zoom-in;
    transition: border 0.3s ease, transform 0.3s ease;
}
.gallery-slider .gallery-slide img:hover {
    border: 1px solid #000; /* color of border on hover */
    transform: scale(1.03);   
	padding:5px ;/* optional subtle zoom effect */
}

/* .gallery-slide {
    position: relative; 
    overflow: hidden;
} */
.gallery-slide, .slick-slide {
    position: relative;
    overflow: hidden;
}


/* New Arrival */
.new_product {
    padding: 40px 0px 7px;
}
.row.recent-products-section {
    padding: 37px 0;
}
.recent-products .col-lg-7 .row img {
    width: 100px;        /* fixed width */
    height: 100px;       /* fixed height */
    object-fit: cover;   /* crop if image is bigger */
    border-radius: 8px;  /* optional rounded corners */
    display: block;
}
.product-row {
    display: flex;
    align-items: center;
}

.product-image img {
    width: 100px;        /* fixed width */
    height: 100px;       /* fixed height */
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent; /* invisible initially */
    transition: border 0.3s ease, transform 0.3s ease;
}


.col-6.mb-4.single-product-item.text-center {
    display: flex;
    justify-content: center;
    align-items: baseline;
}
.single-product-item .product-thumb {
    width: 100%;
    height: 185px;
    object-fit: cover;
    border-radius: 8px;
    transition: .3s ease-in-out;
}

.single-product-item .product-thumb:hover {
    border: 1px solid #000;
    transform: scale(1.05);
	padding:5px;
    transition: 0.3s ease-in-out;
}
.Price_details {
    display: block;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    margin-left: 15px;
}
.product-title {
    font-size: 14px;
    margin-top: 0.5rem;
}
.product-cost {
    font-size: 13px;
    color: #333;
    margin: 0;
}
.product-details .product-title {
    font-size: 14px;
    margin: 0;
}
.product-details .product-cost {
    font-size: 13px;
    color: #333;
    margin: 0;
}

.recent-products-right .static-right-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
h6.product-title.mt-2 {
    font-size: 20px;
    margin-top: 20px !important;
}
bdi {
    font-size: 16px;
    color: var(--black);
    font-weight: 600;
}
img.img-fluid.static-right-img {
    width: 100%;
    height: 770px;
    object-fit: cover;
    margin-top: -32px;
}
.new_product .col-lg-7 .row {
    row-gap: 15px;
}



/* Brand Slider */

.brand-slider-section {
    padding: 50px 0;
    margin: 36px 0;
    background-image: url('https://algopagedev.com/work/sixscent.com/wp-content/uploads/2025/08/home2-bg-10-2.jpg');
    background-size: cover;       /* Make sure the image covers the section */
    background-position: center;  /* Center the image */
    background-repeat: no-repeat; /* Prevent tiling */
}


.brand-slider .brand-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.brand-slider .brand-item img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-slider .brand-item img:hover {
    transform: scale(1.1);
}
 
/* Offer Banner Section  */

.offerbanner img {
    border-radius: 10px;
    margin-bottom: 30px;
    width: 100%;
}
.offerbannercnt {
    position: absolute;
    top: 30%;
    left: 50px;
}
.offerbannercnt h2 {
    font-size: 50px;
    width: 60%;
    color: #000;
    font-weight: 500;
    line-height: 65px;
    margin-bottom: 30px;
}
.offerbannercnt .btn {
    background: var(--primary);
    color: #000;
    border: unset;
    font-weight: 500;
}



/* TESTIMONIAL SECTION CSS */

.testimonial {
    padding: 32px 0 60px;
}
.testimonial-item {
    box-shadow: 0 0 12px #e9e9e9;
    border: 1px solid #cccccc4a;
    text-align: center;
    border-radius: 6px;
    overflow: hidden;
    padding: 18px;
    background: #feeb9c40;
    height: 300px !important;
}
.testimonial-cnt p{
    height: 120px;
    overflow-y: scroll;
    padding-right: 10px;	
}
.testimonial-cnt p::-webkit-scrollbar-track {
 -webkit-box-shadow: inset 0 0 4px rgb(0 0 0 / 30%);
 border-radius: 10px;
 background-color: var(--white);
}
 .testimonial-cnt p::-webkit-scrollbar {
 width: 3px;
 background-color: #F5F5F5;
}
 .testimonial-cnt p::-webkit-scrollbar-thumb {
 border-radius: 10px;
 -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
 background: var(--primary);
}

.testimonial-item img {
    width: 91px !important;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
    margin: 0 auto;
    height: 74px;
}
.testimonial-cnt h3 svg path {
    fill: var(--primary);
}
.testimonial-cnt h3 svg {
    width: 15px;
    height: 15px;
    opacity: .3;
}
.testimonial-item h3 {
    margin: 8px 0 5px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
}
.testimonial .rating{
	column-gap: 7px;	
}
.testimonial .rating i {
    color: #ef932c !important;
    font-size: 15px !important;
    margin-bottom: 15px !important;
}
.testimonial-item i {
    color: var(--primary);
    font-size: 25px;
    margin-bottom: 15px;
}
.testimonial .heading .subheading {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 500;
    padding-left: 0;

    border-left:unset;
}
.testimonial figure {
    position: relative;
    margin-bottom: 15px !important;
}
/* All Product Page */

.shop-page {
    margin-top: 20px;
}
.product_list .row {
    row-gap: 22px;
}

.filter-sidebar {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 6px;
    position: sticky;
    top: 80px; /* keep filter fixed when scrolling */
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
    height: 100%;
}
.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-img img {
    width: 100%;
    height: 220px;
    object-fit: contain;
}

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

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.price-box {
    font-size: 18px;
    font-weight: bold;
    color: #007bff;
    margin: 8px 0;
}


/* Home Blog */

.homeblog {
    padding: 40px 0 55px;
}
.homebloglist {
    box-shadow: inset 0 0 30px #ebebeb;
    background: var(--white);
    border-radius: 2px;
    transition: .5s;
    overflow: hidden;
}
.homebloglist:hover img {
    transform: scale(1.1) rotate(3deg);
    filter: grayscale(1);
}
.homeblogbox h3 {
    font-size: 19px;
    line-height: 25px;
    margin-bottom: 10px !important;
}
.homeblogbox span {
    color: var(--primary);
    font-size: 15px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding-bottom: 12px;
    display: block;
}
.homebloglist figure {
    margin: 0;
    overflow: hidden;
}
.homebloglist img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: .5s;
}
.homeblogbox {
    padding: 20px 20px 20px;
    position: relative;
    text-align: left;
}
.homebloglist p {
    margin: 10px 0 20px;
}
.homebloglist ul {
    display: flex;
    column-gap: 20px;
    border-bottom: solid 1px #dddddd8c;
    padding: 10px 0 20px;
}
.homebloglist ul li, .homebloglist ul li a {
    font-size: 15px;
}
.homebloglist ul li i {
    margin-right: 5px;
    color: var(--primary);
}

.homeblogbox .readmore {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--primary);
    margin: 15px 0 0;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
}
.blogpost .homeblog {
    background: none;
    padding: 0;
}

/* Blog Page */
.blog-section {
  padding: 60px 0;
  background: #fafafa;
}

.blog-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
}

/* .blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
} */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100% !important;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.blog-image img {
    /* width: 100%; */
    height: 260px;
    width: 902px;
    object-fit: cover;
    border-radius: 8px;
}
/* .blog-image {
    padding: 0px 0px 0px 14px;
} */
.blog-image {
  position: relative;
  padding: 0px 0px 0px 14px;
  overflow: hidden;
}

.blog-image::before,
.blog-image::after {
  content: "";
  position: absolute;
  transition: all 0.4s ease;
}

/* Top border */
.blog-image::before {
  top: 0;
  right: 0;
  height: 2px;
  width: 0%;
}
/* .blog-list .blog-item .post-format > a::before {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    top: 6px;
    bottom: 6px;
    z-index: 9;
    transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border-top: 4px solid rgba(255, 255, 255, 0.6);
    border-bottom: 4px solid rgba(255, 255, 255, 0.6);
} */
/* Right border */
.blog-image::after {
  top: 0;
  right: 0;
  width: 2px;
  height: 0%;
}

/* Hover animation */
.blog-image:hover::before {
  width: 100%;
}

.blog-image:hover::after {
  height: 100%;
}


.blog-content {
  padding: 20px;
}

.blog-category {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-post-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-post-title a {
  text-decoration: none;
  color: #222;
}

.blog-post-title a:hover {
  color: #d23f57;
}

.blog-description {
    font-size: 14px;
    line-height: 22px;
    color: #555;
    margin-bottom: 15px;
}



.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-img {
  border-radius: 50%;
  width: 35px;
  height: 35px;
  object-fit: cover;
}

.author-name {
  font-size: 14px;
  color: #333;
}

.pagination-wrapper {
  text-align: center;
  margin-top: 40px;
}

.pagination-wrapper a,
.pagination-wrapper span {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination-wrapper a:hover,
.pagination-wrapper .current {
  background: #d23f57;
  color: #fff;
  border-color: #d23f57;
}

/* Responsive */
@media(max-width: 768px){
  .blog-card { margin-bottom: 20px; }
}


/* FASTNESS SECTION CSS */

.fastness {
    padding: 60px 0;
}
.fastness-item {
    box-shadow: 0 0 12px #d9d9d9;
    padding: 20px;
    border-radius: 6px;
}
.fastness-item img {
    width: 80px;
}
.fastness-item h3 {
    margin: 20px 0 5px;
    font-size: 20px;
}
h2.woocommerce-loop-product__title {
    font-size: 17px !important;
    letter-spacing: 1px !important;
    word-spacing: 4px !important;
    font-family: none !important;
}

/* FOOTER SECTION CSS */

footer {
    background: #000;
}
footer ul#menu-quick-links {
    padding: 0;
}
footer ul#menu-quick-links a {
    text-decoration: none;
    display: inline-block;
}
footer input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background: #ccc !important;
    color: #000 !important;
}
footer img {
    width: 100%;
}
.footerabout img {
    width: 150px;
}
footer .col-lg-3 {
    border-right: 1px solid #ffffff14;
    padding: 40px 30px;
}
.footerabout .footer-logo {
    background: var(--white);
    padding: 10px 20px;
    width: fit-content;
    border-radius: 6px;
}
footer .wpcf7 form.sent .wpcf7-response-output, footer .wpcf7-response-output {
    border-color: #46b450;
}
/*
footer .col-lg-3:first-child, footer .col-lg-3:last-child {
    background: #eeeeee94;
}
*/
span.wpcf7-spinner {
    position: absolute;
    left: 0;
}
footer .col-lg-3:last-child {
    border: none;
}
footer ul li.menu-item a {
    margin-bottom: 5px;
    display: block;
}
footer ul li:last-child a {
    margin-bottom: 0;
}
footer ul li.menu-item a:hover {
  color: var(--white);
}
.footersmo li i {
    color: #4d4a4f;
    font-size: 18px;
}
footer h4 {
    margin-bottom: 15px;
    font-size: 20px;
    position: relative;
    padding-bottom: 8px;
}
footer h4:after {
    content: '';
    position: absolute;
    border-bottom: solid 1px var(--white);
    width: 60px;
    bottom: 0;
    left: 0;
}
footer a, footer p, .footerabout a {
    color: #eee;
}
footer a:hover {
    color: var(--secondary) !important;
}
.footer-details a {
    text-decoration: none;
    font-size: 15px;
}
footer ul.footer-details li:last-child {
    margin-bottom: 0;
}
footer ul.socialicon {
  display: flex;
    column-gap: 6px;
	justify-content: flex-end;
}
footer ul.socialicon li a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: #212222;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    margin: 0;
}
footer .readbtn {
    text-decoration: underline;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--primary);
    margin-top: 15px;
    display: block;
}
footer ul.footer-details li {
    margin-bottom: 10px;
    color: #eee;
    position: relative;
    padding-left: 28px;
}
footer ul.footer-details li i {
    position: absolute;
    left: 0;
    top: 6px;
}
footer form {
    position: relative;
}
footer input[type="email"] {
    background: var(--white);
    font-size: 14px;
    border-radius:2px;
}
footer input[type="submit"] {
    width: 100%;
    margin-bottom: 0;
}
footer li a {
    color: #eee !important;
}
.copyright {
    padding: 10px 0;
    border-top: 1px solid #ffffff14;
}
.copyright .col-lg-5 {
    display: flex;
    justify-content: flex-end;
}
.copyright .row {
  align-items: center;
}
.copyright p, .copyright p a {
    margin: 0 !important;
    font-size: 15px;
    text-align: center;
}
.copyright p a:hover{
    color: var(--primary);
}
.copyright ul {
    display: flex;
    justify-content: center;
}
.copyright ul li {
    border-right: solid 1px #dddddd40;
    padding: 0 15px;
}
.copyright ul li:last-child {
    border-right: none;
    padding-right: 0;
}
.copyright figure {
    background: var(--white);
    padding: 5px 5px 3px;
    border-radius: 2px;
    display: none;
}

#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 30px;
    left: 18px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 6px 9px rgb(0 0 0 / 5%), 0 4px 5px rgb(0 0 0 / 5%);
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 999;
}
#whatsappbtn:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	border-radius: 50%;
	background: #4fcc5d;
	box-shadow: 0 0 10px #4fcc5d;
	animation: whtsbtn 2s linear infinite forwards;
}
 @keyframes whtsbtn {
 from {
 transform:scale(1.0);
 opacity: 1;
}
to {
	transform:scale(1.5);
	opacity: 0;
}
}
#whatsappbtn img {
    width: 26px;
}
#GoToTop {
    display: none;
    position: fixed;
    bottom: 111px;
    right: 23px;
    border-radius: 5px;
    z-index: 99999999;
    padding: 0;
    border: solid 1px var(--primary);
    background: var(--white);
    width: 45px;
    height: 48px;
    text-align: center;
    cursor: pointer;
    font-size: 17px;
    color: var(--black);
    text-decoration: none;
    padding-top: 10px;
}
#GoToTop .fa {
	display: block;
	padding-bottom: 3px;
}
#GoToTop:hover {
	background: var(--primary);
	color: var(--white);
}
#GoToTop.show {
	display:block
}
.page.page-id-7 .breadcrumb {
    display: none;
}
.breadcrumb {
    padding: 40px 0 !important;
    margin: 0 !important;
    background: #f2f2f2;
}
.breadcrumb .row {
  align-items: center;
  display: flex;
}
.breadcrumb h1 {
  margin:0;
}

.breadcrumb p {
    text-align: center;
    margin: 0;
}
.breadcrumb h1 p {
    text-align: left;
}
.breadcrumb p, .breadcrumb span, .breadcrumb p a {
    color: var(--white);
    font-weight: 500;
}

.breadcrumb p a {
    padding-right: 7px;
    /* margin-right: 5px; */
    position: relative;
    text-decoration: none;
    font-size: 20px;
}
.breadcrumb h1 span {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: .5px;
    color: var(--black);
    text-transform: uppercase;
    line-height: normal;
}

.breadcrumb h1 .breadcrumbs_last {
  font-size: 28px;
  margin: 0 0 15px;
  font-weight: 800;
}
.breadcrumb h1 p{
  float:left;
}
.breadcrumb h1 span a {
  display: none;
}

/* .breadcrumb a:after {
    position: absolute;
    content: '\f101' !important;
    font-size: 10px !important;
    font-weight: 600;
    font-family: 'Font Awesome 5 Free' !important;
    color: var(--secondary);
    right: 0;
    top: 0;
} */
.secondary-container {
    padding: 60px 0 40px;
}

/* Contact Us */

.secondary-container.contactus {
    background: url(../images/contactbg.jpg);
	padding: 60px 0 40px !important;
}
/* CONTACT US PAGE */

.contact-list {
/*     background: linear-gradient(45deg, var(--primary), var(--secondary)); */
    padding: 25px;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}
.contact-list:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: '';
    background: url(../images/map.png);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.4;
	z-index: -1;
}
.contact-info span, .contact-info a {
    color: var(--black);
    text-decoration: none;
}
/* .contact-list .contact-item:last-child {
    margin: 0;
} */
.contact-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.contact-item {
    background: linear-gradient(45deg, #f7d5d5, #60b969c2);
    padding: 24px;
    border: 1px solid #ffffff33;
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    transition: .5s;
    height: 150px;
    width: 364px;
}
.contact-item:hover {
    background: var(--white);
}
.contact-item:hover .contact-info span, .contact-item:hover .contact-info a {
    color: #000;
}
.contact-item i {
    background: var(--primary);
    height: 60px;
    width: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    font-size: 20px;
	position:inherit !important;
}
.contact-info span {
    display: block;
    font-weight: 500;
    font-size: 22px;
}
.contact-form {
    padding: 25px 150px 22px;
    border-radius: 2px;
    box-shadow: 0 0 14px #f7f7f7f5;
}
.contact-form input, .contact-form textarea {
    border: solid 1px #0066b030;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 2px;
    width: 400px;
}
 .contact-form input.wpcf7-form-control.wpcf7-tel.wpcf7-validates-as-required.wpcf7-text.wpcf7-validates-as-tel {
    width: 821px;
}
.contactus h3 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}
.contact-form input[type="submit"] {
    margin: 0;
    padding: 7px 31px;
    border: none;
    letter-spacing: 2px;
    width: 200px;
}
.contact-form textarea {
    height: 105px;
    margin: 0;
    width: 820px;
}
.googlemap {
    padding: 50px 0;
}
.googlemap iframe {
    filter: grayscale(1);
}
.contactaddr {
    margin-top: 60px;
}
.contactaddr-item {
    border: solid 1px #ddd;
    padding: 25px;
    border-radius: 6px;
	display: flex;
    align-items: center;
    column-gap: 20px;
}
.contactaddr-item i {
    font-size: 25px;
    border: solid 2px var(--primary);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--primary);
}
.contactaddr-item p {
    width: 100%;
    margin: 0 auto;
}
.contactaddr-item h4 {
    margin: 0 0 6px;
}
/* FAQ section */
.faq-section {
    padding: 60px 0px 0px;
    background: #f9f9f9;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  background: #fff;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-toggle {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  margin: 15px 0;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 15px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-question h3 {
    font-size: 20px;
    font-weight: 400;
}

/* WOOCOMMERCE */


.row.products {
    row-gap: 0;
    clear: both;
}
.wsatc-container .woocommerce .star-rating {
    float: none;
}
.wsatc-price {
    font-size: 20px;
    color: var(--primary);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border-radius: 0 !important;
}
.woocommerce .woocommerce-breadcrumb {
    display: none;
}
.woocommerce div.product form.cart .variations label {
    font-weight: 600 !important;
    text-transform: capitalize;
    font-size: 17px;
}
.woocommerce ul.products li.product-category.product {
    border: solid 1px #eee;
    margin: 15px 7px !important;
    width: 24% !important;
    display: flex;
}
.woocommerce ul.products li.product-category.product img {
    margin: 0 !important;
}
.woocommerce .products .star-rating {
    margin: 0 auto 12px !important;
}
.woocommerce .star-rating span {
    color: #ff9109;
}
h3.wc-block-price-filter__title {
    display: none;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title{
	font-size: 16px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0;
    padding: 10px 15px !important;
}
.woocommerce ul.products li.product-category.product.first {
    margin-left: 0 !important;
}
.woocommerce ul.products li.product-category.product.last {
    margin-right: 0 !important;
}
section.related.products h2 {
    text-transform: capitalize;
}
.wp-block-button__link {
    background-color: var(--primary) !important;
    font-size: 15px !important;
    padding: 5px 17px 7px !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    font-family: Inter !important;
    text-transform: capitalize;
}
.wc-block-grid__product-price {
    font-size: 15px;
}
.wc-block-grid__product .wc-block-grid__product-title {
    font-size: 16px;
    line-height: 23px;
    margin: 15px 0 18px;
}
.wc-block-grid__product-onsale {
    position: absolute !important;
    top: -10px !important;
    left: 0 !important;
    padding: 1px 15px !important;
    background: var(--primary) !important;
    color: var(--white) !important;
    border: none !important;
}
.woocommerce ul.products li.product .price {
    color: var(--primary) !important;
    margin-bottom: 0 !important;
    font-size: 16px !important;
}
.woocommerce ul.products li.product .price ins {
    margin-left: 8px;
}
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    color: var(--white) !important;
    border: none !important;
    padding: 11px 20px 10px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: .3px !important;
    display: inline-block !important;
    margin-top: 12px !important;
    background: linear-gradient(45deg, var(--black), var(--primary)) !important;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
    font-size: 16px !important;
    letter-spacing: 0 !important;
}
.woocommerce div.product div.images.woocommerce-product-gallery {
    position: relative;
    display: table;
    flex-direction: row-reverse;
}
.woocommerce-product-gallery .flex-viewport {
    width: 100%;
}

.wc-block-components-price-slider {
    margin-bottom: 0;
}
.woocommerce div.product div.images img {
    border-radius: 6px;
	 width: 71% !important;
	  margin: 0 auto !important;
}

/* .woocommerce div.product div.images img {
    display: block;
    width: 71%;
    height: auto;
    margin: 0 auto;
    box-shadow: none;
} */

.page-id-11 .row.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.page-id-11 .row.products .col-sm-3:first-child {
    grid-area: span 2 / span 2;
}
.page-id-11 .row.products .col-sm-3:first-child img {
    height: 493px !important;
}
.page-id-11 .row.products .col-sm-3 {
    width: 100%;
    padding: 5px;
}
.page-id-11 .row.products.columns-4 {
    clear: both;
}
.page-id-11 .row.products.columns {
    row-gap: 0;
}
.prdctlst h2 {
    position: absolute;
}
.row.products.columns {
    row-gap: 10px;
}
.prdctlst span.price {
    display: none !important;
}
.prdctlst img {
    width: 100% !important;
    overflow: hidden;
    transition: .5s ease-in-out;
    height: 300px !important;
    object-fit: cover;
}
.prdctlst {
    text-align: center;
    position: relative;
    z-index: 1;
    background: var(--white);
    height: 296px;
    width: 100%;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid #e9e9e9;
    border-radius: 10px;
}
.category-section .prdctlst img {
    border-radius: 50%;
    width: 200px !important;
    object-fit: cover;
    height: auto !important;
}
.category-section .prdctlst {
    background: #fff !important;
    position: unset;
    padding: 20px;
}
.category-section .prdctlst h2 {
    line-height: 27px;
    overflow: hidden;
    color: var(--black);
    width: 100%;
    font-family: "Manrope", sans-serif !important;
    font-size: 22px !important;
    font-weight: 500;
    text-align: center !important;
    position: unset !important;
    margin: 20px 0;
    letter-spacing: 0.5px !important;
}
.prdctlst .best-seller-badge {
    top: 7px;
    left: 6px;
}
.prdctlst a {
    text-decoration: unset !important;
}
.product-item .best-seller-badge {
    top: 16px !important;
    left: 12px;
}
/* .prdctlst:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    content: '';
    height: 35%;
    background: linear-gradient(0deg, #000000d9, #0000);
} */

.prdctlst:hover img {
    transform: scale(1.1);
/*     filter: hue-rotate(45deg); */
}
.prdctlst a.button {
    display: none !important;
}
.prdctlst h2 {
    line-height: 27px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-height: 70px;
    position: absolute;
    bottom: 0;
    color: var(--white);
    left: 0;
    transform: translateY(0);
    width: 100%;
    font-family: "Manrope", sans-serif !important;
    font-size: 22px !important;
    bottom: 10px;
}
.prdctlst span.price {
    display: block;
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
}
.prdctlst span.price ins {
    margin-left: 10px;
}
.woocommerce span.onsale{
display:none;
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
    color: var(--primary) !important;
    font-size: 18px !important;
    font-weight: 500;
}
.wpb_wrps_price {
    color: var(--primary);
    font-size: 20px;
}
.wrps_related_products.wrps_theme_box .wpb_wrps_title a {
    color: var(--black) !important;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: normal;
}
.woocommerce div.product p.price {
    margin: 0 0 10px;
    padding: 0;
}
.woocommerce div.product div.images .flex-control-thumbs {
    display: flex;
    column-gap: 5px;
    width: 100%;
}
.woocommerce div.product div.images .flex-control-thumbs li {
    width: 170px !important;
    float: none !important;
    border: solid 1px #ddd !important;
}
.woocommerce .quantity .qty {
    width: 80px;
    text-align: center;
    border: solid 1px #ddd;
    padding: 4px;
    border-radius: 3px;
}
.product_meta {
    margin-top: 22px;
    display: flex !important;
    flex-direction: column !important;
}
.product_meta span {
    margin-bottom: 7px;
}
.woocommerce span.onsale {
    min-height: 45px !important;
    min-width: 45px !important;
    background-color: var(--primary) !important;
}

.bestslr-prdct {
    padding: 60px 0;
}
.bestslr-prdct .container-fluid {
    padding-right: var(--bs-gutter-x, 15px);
    padding-left: var(--bs-gutter-x, 15px);
}
.bestslr-prdct .col {
    padding: 0 8px;
}
.bestslr-prdct h3 {
padding: 25px 0 10px;
    margin: 0;
    color: var(--primary);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0;
}
.bestslrprdct-box {
    box-shadow: 0 1px 13px 0 rgb(0 0 0 / 22%);
    padding: 0 20px 20px;
    text-align: center;
    position: relative;
    border-radius: 21px;
}
.productlist-box {
    padding: 15px 10px;
}
.productlist-box h4 a {
    font-size: 20px !important;
    line-height: 25px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.bestslrprdct-box::before{
content: '';
    background-color: #fff0f8;
    position: absolute;
    width: 100%;
    display: block;
    height: 28%;
    left: 0;
    right: 0;
    z-index: -1;
    border-radius: 21px 21px 0 0;
}	
.bestslrprdct-box .dtlsbtn {
margin-top: 15px;
    display: block;
    color: #111;
    font-weight: 600;
}
.bestslrprdct-item {
    text-align: center;
    position: relative;
    z-index: 99;
    background: var(--white);
    height: 100%;
    border-radius: 6px;
    transition: .5s;
    padding: 28px 15px;
    border: 1px solid #0066b038;
}

.bestslrprdct-item:after {
	border-top: 1px solid var(--primary);
	border-bottom: 1px solid var(--primary);
	transform: scaleX(0)
}
.best-seller-badge {
    position: absolute;
    top: 63px;
    left: 113px;
    background: #67621c;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 9;
}

.bestslrprdct-item:hover:after {
	transform: scaleX(1)
}
.bestslrprdct-item:before {
	border-right: 1px solid var(--primary);
	border-left: 1px solid var(--primary);
	transform: scaleY(0)
}
.bestslrprdct-item:hover:before {
	transform: scaleY(1)
}
.bestslrprdct-item:before,
.bestslrprdct-item:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: .5s;
	border-radius:6px;
}



.bestslrprdct-item:hover {
    transform: translateY(-5px);
}
.bestslrprdct-item figure {
    background: var(--white);
    padding: 20px;
    border-radius: 50%;
    overflow: hidden;
    height: 220px;
    width: 220px;
    margin: 0 auto;
    border: 1px solid #0066b026;
}
.bestslrprdct-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 1s;
}
.bestslrprdct-item:hover img {
    transform: rotateY(180deg);
}

aside#woocommerce_price_filter-2 {
    margin-bottom: 25px;
}

.product-page .col-sm-9 .row .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
    padding: 0 5px;
}
.woocommerce a.added_to_cart {
    position: relative;
}
.woosidebar {
    padding: 18px;
    border-radius: 2px;
    box-shadow: 0 0 15px #f1f1f1;
}
.woosidebar li.col-sm-4 {
    width: 100%;
}
.woosidebar h2 {
    font-size: 22px;
    margin-bottom: 20px;
    text-transform: capitalize;
    color: var(--black);
}
.woosidebar aside#block-25 {
    margin-top: 35px;
}
.woosidebar .wc-block-product-categories {
    margin-bottom: 0;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    background-color: #35363a !important;
}
.woosidebar ul li {
    line-height: 30px;
}
.thwvsf-wrapper-ul .thwvsf-wrapper-item-li {
    width: 35px !important;
    height: 35px !important;
    border-radius: 50% !important;
}
.promotions {
    clear: both;
    margin-bottom: 40px;
}
.promotions-box {
    border: solid 1px var(--primary);
    text-align: center;
    padding: 15px;
}
.promotions-box h3 {
    font-weight: 600;
    letter-spacing: 0;
    margin: 12px 0 0;
}
.promotions-box h3 span {
    font-size: 14px;
    letter-spacing: 0;
    display: block;
    color: #555;
    padding-top: 10px;
    font-weight: normal;
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    margin: 18px 0 0 !important;
}
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
    min-width: 80px !important;
    padding: 15px !important;
}
.woocommerce nav.woocommerce-pagination ul {
    margin: 30px 0 0 !important;
}
.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
    background: #111 !important;
    color: var(--white) !important;
    font-weight: 500 !important;
}

/* Single product short description */
.woocommerce-product-details__short-description li {
    margin-bottom: 5px !important;
}

/* Shipping */

.shipping {
    padding: 40px 0;
    border-top: solid 1px #eee;
}
.shipping-item img {
    max-width: 45px;
}
.shipping-item strong {
    display: block;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 3px;
}
.shipping-item i {
    color: var(--white);
    font-size: 23px;
    background: var(--primary);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -6px -6px 0px #f8000061;
}
.shipping-item figure {
    box-shadow: 0 0 14px #ddd;
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    margin: 0 auto;
    background: var(--white);
}
.shipping-item h3 {
    margin: 16px 0 0;
    font-size: 20px;
}
.shipping-item p {
    margin: 0;
}



/* FAQS */

#sp-ea-40768.sp-easy-accordion>.sp-ea-single>.ea-header a {
    color: #444;
    background: #fff;
    font-size: 17px;
	border-radius:0;
}
#sp-ea-40768.sp-easy-accordion>.sp-ea-single>.ea-header a .ea-expand-icon.fa {
    float: right;
}
.sp-ea-one.sp-easy-accordion .sp-ea-single .ea-header a {
    padding: 12px 20px !important;
    background: #fff !important;
    font-size: 18px;
    font-weight: normal !important;
    color: var(--black) !important;
}

/* WALLPAPER SECTION CSS */

.wallpapers {
    padding: 50px 0 60px;
}
.wallpapersldr-item {
    border-radius: 6px;
    overflow: hidden;
}
.wallpapersldr-item figure {
    overflow: hidden;
}
.wallpapersldr-item figure:hover img {
    transform: scale(1.1);
}
.wallpapersldr-item img {
    transition: all ease-in-out .5s;
}
.wallpapersldr-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(0);
    text-align: center;
    color: var(--white);
    z-index: 1;
    font-weight: 400;
}
.wallpapersldr-item:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    content: '';
    height: 35%;
    background: linear-gradient(0deg, #000000d9, #0000);
    z-index: 1;
}

/* Short code css */
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown {
    border-radius: 4px;
    background: none !important;
    padding: 4px 15px !important;
    cursor: pointer;
    position: relative !important;
    border: none !important;
    border-bottom: 1px solid #0c016e47 !important;
    border: 0px 0px 1px 0px !important;
}
.yith-wcan-filters .yith-wcan-filter .filter-title {
    font-size: 18px !important;
    font-weight: 700 !important;
}

.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper {
/*     background-color: #e8e8e8 !important; */
    border-radius: 4px !important;
    position: relative !important;
    border: none !important;
    box-shadow: none !important;
}
.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper .search-field-container:after {
   display:none !important;
}

/* About Us */

.aboutus .row {
    align-items: center;
}
.aboutus .row:nth-child(even) {
    flex-direction: row-reverse;
}
.aboutus figure{
	margin:0;
	overflow:hidden;
}
.aboutus figure img {
    width: 100%;
	transition:all ease-in-out .5s;
}
.aboutus figure img:hover{
	transform:scale(1.1) rotate(3deg);
}
.aboutus-content {
    padding: 50px;
}
.aboutus h3 {
    font-size: 37px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: -11px;
    /* margin-left: 20px; */
    text-transform: capitalize;
}
.aboutus h3:after {
    content: '+';
    position: absolute;
    font-size: 61px;
    font-weight: bold;
    color: var(--black);
    right: -22px;
    top: 15%;
    transform: translateY(-50%);
}

.counter span {
    font-size: 30px;
    color: #4f4949;
    margin-left: 24px;
}
/* video section */
.video_section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    /* height: 700px; */
    border: 1px solid #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
video {
  width: 100%;
  display: block;
  border-radius: 15px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: white;
  background: rgba(0,0,0,0.6);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.play-button:hover {
  background: rgba(0,0,0,0.8);
}


/* PRODUCT PAGE CSS */
.category-section {
    padding: 50px 0 60px;
}
li.product-category.product a {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 12px;
    border-radius: 2px;
}

li.product-category.product a img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 12px;
}
li.product-category.product a h2.woocommerce-loop-category__title {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0;
}

li.product-category.product a h2.woocommerce-loop-category__title mark.count {
    background: linear-gradient(45deg, var(--primary), var(--black));
    color: #fff;
    font-size: 14px;
    height: 30px;
    width: 30px;
    font-weight: 400;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.row.products .col-sm-4 {
    padding: 0;
    border-collapse: collapse;
}
.product-categories .col-sm-4 {
    padding: 0 7px !important;
    border: none !important;
}
.wpf_item {
    padding: .8em 0 0 !important;
}
section.related.products {
    clear: both;
}
form.cart button.single_add_to_cart_button {
    margin: 0 !important;
}
h2.wrps_related_products_area_title span:after {
    content: 'You May Also Like';
    left: 0;
    position: absolute;
    background: #fff;
}
.woocommerce-tabs.wc-tabs-wrapper {
    margin-top: 40px;
}
.wrps_related_products_area .owl-theme .owl-dots{
	display: none !important;
}
.wrps_related_products .wpb_wrps_cart_btn {
    display: none;
}


/* STICKY ADD TO CART BAR CSS */

.wsatc-add-to-cart {
    padding: 10px 24px !important;
}
.wsatc-qty-wrapper .wsatc-qty-field {
    width: 60px !important;
    padding: 8px 4px !important;
    font-size: 13px !important;
}
.wsatc-qty-wrapper .wsatc-qty-minus, .wsatc-qty-wrapper .wsatc-qty-plus {
    width: 36px !important;
    padding: 5px 0 !important;
    font-size: 18px !important;
}



/* SINGLE PRODUCT PAGE CSS */

/*
.summary.entry-summary .price, form.cart {
    display: block;
    padding: 30px;
    background: #f1f1f1;
    margin: 0 !important;
}
*/
.summary.entry-summary {
    background: #f9f9f9;
    padding: 0;
}
.woocommerce div.product div.images .flex-control-thumbs li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.woocommerce div.product div.images .flex-control-thumbs {
    margin-top: 19px !important;
    /* width: 300px; */
}
.woocommerce div.product .product_title {
    line-height: 33px !important;
    font-size: 27px !important;
    margin-bottom: 15px !important;
    font-family: none !important;
}
/* .summary.entry-summary form.cart {
    padding-top: 0;
    margin-bottom: 20px !important;
} */

.summary.entry-summary form.cart {
    padding-top: 21px;
    margin-bottom: 21px !important;
}

.summary.entry-summary .price {
    padding-bottom: 16px;
}
.woocommerce .quantity .qty {
    border: solid 1px #ddd;
    padding: 5px;
    border-radius: 3px;
    margin-right: 10px;
}

/* Our Clients */

.ourclients {
    padding: 60px 0;
    background: #f5f5f5;
}
.ourclients-item {
    border: solid 1px #eee;
    padding: 15px;
    text-align: center;
	background: var(--white);
}


/* Get Inspired */

.getinspired img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}
.getinspired-form {
    box-shadow: 3px 3px 13px #ddd;
    padding: 15px 20px;
    border-radius: 6px;
}
.getinspired-form h3 {
    margin-bottom: 0;
}
.getinspired-form p {
    margin: 5px 0 10px;
}
.getinspired-form textarea {
    height: 100px;
}
.getinspired-form input[type="submit"] {
    margin-top: 10px;
}

/* Help Center */
.helpcenter .row {
    row-gap: 40px;
}
.helpcenterdtls h2 {
    font-weight: 600;
}
.helpcenter-item ul li {
    line-height: 30px;
}
.helpcenter-item h3 {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 5px;
}
.helpcenter-item .moreless-button, .helpcenter-item .moreless-button-one, .helpcenter-item .moreless-button-two, .helpcenter-item .moreless-button-three, .helpcenter-item .moreless-button-four {
    text-decoration: underline;
    font-size: 16px;
    color: var(--black);
    display: block;
    margin-top: 6px;
    cursor: pointer;
}
.helpcenterdtls-content h3 {
    font-size: 20px;
    margin: 18px 0 5px;
}
.helpcenterdtls-sidebar ul li {
    margin-bottom: 15px;
}
.helpcenterdtls-sidebar ul li a {
    font-size: 16px;
}
.helpcenterdtls-sidebar ul li a:hover {
    text-decoration: underline;
}
.helpcenterdtls-sidebar ul .current-menu-item a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.helpcenterdtls-content {
    padding-right: 30px;
}
.helpcenterdtls-content ul {
    margin: 15px 0;
}
.helpcenterdtls-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
}
.helpcenterdtls-content ul li:before {
    content: '\f192';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 12px;
    top: 0;
}
.helpcenterdtls-content p strong {
    font-weight: 600;
    font-size: 16px;
}
.helpcenter-search form.wp-block-search__button-outside.wp-block-search__text-button.wp-block-search {
    width: 400px;
    margin: 0 auto 50px;
}
.helpcenter-search input {
    border: solid 1px #ddd;
    padding: 8px 15px;
    outline: none;
}
.helpcenter-search button[type="submit"] {
    margin: 0;
    background: var(--black);
    color: var(--white);
    padding: 5px 20px;
    letter-spacing: .5px;
    border: none;
}
.wpf_search_button {
    background-color: var(--primary) !important;
    padding: 8px 20px !important;
    letter-spacing: 1px;
    border-radius: 0 !important;
}

#section {
  word-wrap: break-word;
}
.moretext, .moretext-one, .moretext-two, .moretext-three, .moretext-four{
  display: none;
}

/* Search results */

.searchresults .row {
    row-gap: 15px;
}

.searchresults .homebloglist {
    height: 100%;
}
.searchresults .homeblogbox span {
    display: none;
}

nav.woocommerce-MyAccount-navigation{
	box-shadow: 3px 3px 13px #ddd;
	padding: 15px 20px;
}
nav.woocommerce-MyAccount-navigation ul li a {
    border: solid 1px #ddd;
    display: block;
    padding: 10px 20px;
    margin: 10px 0;
}
nav.woocommerce-MyAccount-navigation ul li.is-active a {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--white);
}
.woocommerce-MyAccount-content {
    box-shadow: 3px 3px 13px #ddd;
    padding: 20px;
}
nav.woocommerce-MyAccount-navigation ul li a:hover {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--white);
}
.woocommerce-message.woocommerce-message--info.woocommerce-Message.woocommerce-Message--info.woocommerce-info {
    margin-bottom: 0;
}
.woocommerce-account .addresses .title h3 {
    margin: 0;
}
.woocommerce-MyAccount-content address {
    margin: 15px 0;
}
.cus_menu button, .dsabafw_woocommerce-address-fields button{
    background: var(--primary) !important;
    border: none;
    padding: 8px 18px  !important;
    letter-spacing: .5px;
	color:var(--white);
}
.billing_address button{
    border: solid 1px #ddd !important;
    background: var(--white) !important;
    font-size: 14px !important;
    padding: 5px 18px !important;
    letter-spacing: .5px;
    margin-bottom: 12px;
}
.dsabafw_table_ship .shipping_empty_message {
    border: none;
}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item) {
    height: 40px !important;
    width: 60px !important;
}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).color-variable-item.selected:not(.no-stock) .variable-item-contents:before, .woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).image-variable-item.selected:not(.no-stock) .variable-item-contents:before {
    background-size: 25% !important;
}
td.value.woo-variation-items-wrapper {
    position: relative;
}
.woocommerce div.product form.cart .reset_variations {
    visibility: hidden;
    font-size: .83em;
    position: absolute;
    right: 0;
    top: 10px;
}
.woocommerce-Tabs-panel h2 {
    display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before, .woocommerce div.product .woocommerce-tabs ul.tabs li.active::after{
	display:none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: linear-gradient(45deg, var(--black), var(--primary)) !important;
    color: var(--white) !important;
    border: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: flex;
    padding: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    width: 250px;
    text-align: center;
    background: #f6f1ed !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::after{
	display:none !important;
}

.paymentoptions { width: 100%; text-align: center; padding: 25px 0;background: #eee;border-radius: 6px 6px 0 0;}
.paymentoptions .paymentitem { display: inline-block;padding: 20px 10px 10px 10px; border: 1px solid #b9b9b9; border-radius: 4px;margin: 10px; position: relative; }
.paymentoptions .paymentitem:before { content: " "; position: absolute; top: -12px; left: 50%; line-height: 24px; height: 24px; padding-left: 10px; padding-right: 10px; transform: translateX(-50%); color: #4b4b4b; background-color: #fff; }
.paymentoptions.pp_eligibility .paymentitem:before { background-color: #eee; }
.paymentoptions .paymentitem.group_standard { min-width: 120px; }
.paymentoptions .paymentitem.group_standard:before { content: "We Accept"; width: 100px; }
.paymentoptions .paymentitem.group_ccemi { min-width: 150px; }
.paymentoptions .paymentitem.group_ccemi:before { content: "Credit Card EMI"; width: 135px; }
.paymentoptions .paymentitem.group_dcemi { min-width: 150px; }
.paymentoptions .paymentitem.group_dcemi:before { content: "Debit Card EMI"; width: 130px; }
.paymentoptions .paymentitem.group_clemi { min-width: 130px; }
.paymentoptions .paymentitem.group_clemi:before { content: "Cardless EMI"; width: 115px; }
.paymentoptions .paymentitem.group_paylater { min-width: 100px; }
.paymentoptions .paymentitem.group_paylater:before { content: "Paylater"; width: 80px; }

.paymentoptions .paymentitem span { background-image: url("../images/payments/blank-0.png"); width: 47px; height: 30px; margin: 0 3px; display: inline-block; position: relative; overflow: hidden; text-indent: -9999px; border-radius: 4px; }
.paymentoptions .paymentitem span:first-child { margin-left: 0; }
.paymentoptions .paymentitem span:last-child { margin-right: 0; }

.paymentoptions .paymentitem span.upi { background-image: url("../images/payments/upi.png"); }
.paymentoptions .paymentitem span.netbanking { background-image: url("../images/payments/netbanking.png"); }
.paymentoptions .paymentitem span.creditcard { background-image: url("../images/payments/creditcard.png"); }
.paymentoptions .paymentitem span.debitcard { background-image: url("../images/payments/debitcard.png"); }
.paymentoptions .paymentitem span.visa { background-image: url("../images/payments/visa.png"); }
.paymentoptions .paymentitem span.mastercard { background-image: url("../images/payments/mastercard.png"); }
.paymentoptions .paymentitem span.maestro { background-image: url("../images/payments/maestro.png"); }
.paymentoptions .paymentitem span.hdfc { background-image: url("../images/payments/hdfc.png"); }
.paymentoptions .paymentitem span.indusind { background-image: url("../images/payments/indusind.png"); }
.paymentoptions .paymentitem span.kotak_mahindra { background-image: url("../images/kotak_mahindra.png"); }
.paymentoptions .paymentitem span.zestmoney { background-image: url("../images/payments/zestmoney.png"); }
.paymentoptions .paymentitem span.earlysalary { background-image: url("../images/payments/earlysalary.png"); }
.paymentoptions .paymentitem span.instacred { background-image: url("../images/payments/instacred.png"); }
.paymentoptions .paymentitem span.axio { background-image: url("../images/payments/axio.png"); }
.paymentoptions .paymentitem span.icici { background-image: url("../images/payments/icici.png"); }
.paymentoptions .paymentitem span.simpl { background-image: url("../images/payments/simpl.png"); }
.single-product .secondary-container {
    background: #f9f9f9;
}
.whychoose-suredec {
    background: var(--white);
    padding: 25px 25px 35px;
    border-radius: 0 0 6px 6px;
    margin-bottom: 30px;
    text-align: center;
}
.whychoosesec {
    margin-top: 25px;
}
.whychoose-suredec .whychoosesec-item {
    border: solid 1px #ddd;
    padding: 20px;
    text-align: center;
    border-radius: 6px;
}
.whychoosesec {
    margin-top: 25px;
}
.whychoose-suredec .whychoosesec-item img {
    width: 65px;
}
.whychoose-suredec .whychoosesec-item h3 {
    margin: 12px 0 0;
    font-size: 20px;
}
.woocommerce-variation-price {
    margin-bottom: 15px !important;
}
.categories {
    padding: 0 0 60px;
}

.categories-info figure img {
    max-width: 140px;
    height: 100px;
    margin: 0 auto;
}

.products-item {
    text-align: center;
    background: #F9F9F9;
    border-radius: 10px;
    padding: 30px 0;
}



/*3.4 themart-upcoming-offer-section */
.themart-upcoming-offer-section .upcoming-offer {
  position: relative;
  background: #F1E2CC;
  margin-top: 100px;
  margin-bottom: 40px;
  padding: 100px 0;
  padding-bottom: 80px;
}

.themart-upcoming-offer-section .upcoming-offer .section-title-text {
  position: absolute;
  left: -9px;
  top: -130px;
}

.themart-upcoming-offer-section .upcoming-offer .section-title-text h2 {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 126px;
  line-height: 163px;
	  -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #F1E2CC;
}

.themart-upcoming-offer-section .upcoming-offer .text {
  text-align: center;
}
.themart-upcoming-offer-section .upcoming-offer .text .shape-text {
  text-align: center;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 50px;
  color: #233D50;
  line-height: 103px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}


.themart-upcoming-offer-section .upcoming-offer .text .shape-text .shape-single {
  font-size: 80px;
  font-weight: 450;
  position: relative;
  padding-left: 50px;
  padding-right: 5px;
}


.themart-upcoming-offer-section .upcoming-offer .text .shape-text .shape-single .shape {
  position: absolute;
  left: 20px;
  top: -25px;
  z-index: 1;
}

.themart-upcoming-offer-section .upcoming-offer .text .upcoming-btn {
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  text-decoration-line: underline;
  color: #233D50;
  margin-left: 55px;
  transition: all .3s ease-in-out;
}

.themart-upcoming-offer-section .upcoming-offer .text .upcoming-btn:hover {
  color: #83B735;
}

.themart-upcoming-offer-section .upcoming-offer .left-shape {
  position: absolute;
  left: 0;
  bottom: -173px;
  height: 448px;
  width: 448px;
  z-index: -1;
}

.themart-upcoming-offer-section .upcoming-offer .left-image {
  position: absolute;
  left: 77px;
  bottom: -85px;
}

.themart-upcoming-offer-section .upcoming-offer .right-shape {
  position: absolute;
  right: 0;
  top: -173px;
  width: 448px;
  height: 448px;
  z-index: -1;
}

.themart-upcoming-offer-section .upcoming-offer .right-image {
  position: absolute;
  right: 44px;
  top: -108px;
}
.themart-upcoming-offer-section.section-padding {
    padding: 120px 0 60px;
}
.productitems .text {
    text-align: center;
    padding: 30px;
}
.text h2 a {
    font-size: 30px;
}
.content del {
    color: #ffffff96;
}
.present-price {
    font-size: 19px;
}
span.present-price del {
    color: grey;
}
.shop-btn .btn {
    color: #000;
    padding: 7px 30px !important;
    margin-top: 16px;
}
.productitem{
    flex-direction: row-reverse;
    column-gap: 50px;
}
.productitem .image img {
    width: 100%;
    height: 280px;
}
/*3.5 themart-special-product-section */
.themart-special-product-section .wpo-section-title {
    text-align: center;
    margin-top: 10%;
}
.themart-special-product-section .offer-wrap {
    background: url(https://algopagedev.com/work/preyashi.com/wp-content/uploads/2025/02/offer-bg-3.jpg);
    height: 600px;
    justify-content: end;
    position: relative;
}
.content {
    position: absolute;
    top: 100px;
}
.content span {
    color: var(--white);
    display: block;
    text-align: right;
    padding-right: 30px;
    font-size: 30px;
}
.content h2 {
    font-size: 44px;
    padding-right: 30px;
    color: var(--white);
}
.content .btn {
    color: var(--white);
    border: 1px solid var(--white);
    position: absolute;
    right: 30px;
    margin-top: 20px;
}
.themart-special-product-section .special-product li .product-item {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  flex: 1 1;
}


.themart-special-product-section .special-product li .product-item .image {
  padding-top: 0;
}




.themart-special-product-section .special-product li .product-item .image img {
  width: 100%;
}

.themart-special-product-section .special-product li .product-item .image .cart-wrap {
  top: 60%;
}

.themart-special-product-section .special-product li .product-item .text {
  width: calc(100% - 317px);
  padding-top: 0;
}






.themart-special-product-section .special-product li:nth-child(2) .product-item .image {
          order: 1;
}


.offer-wrap .content .count-up #clock .box, .offer-wrap .content .count-up #clock-s2 .box, .offer-wrap .content .count-up #clock-s3 .box, .offer-wrap .content .count-up #clock-s4 .box {
    width: 65px;
    height: 65px;
    border: 1px solid #fff;
    font-weight: 400;
    color: #233D50;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all .4s ease-in-out;
    font-size: 23px;
    line-height: 29px;
}


.offer-wrap {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: left;
    z-index: 1;
    background-position: center;
    background-size: cover;
    object-fit: cover;
}

.offer-wrap .content .count-up #clock, .offer-wrap .content .count-up #clock-s2, .offer-wrap .content .count-up #clock-s3, .offer-wrap .content .count-up #clock-s4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 335px;
}

/* 3.9 themart-cta-section */


.themart-cta-section .cta-wrap {
  background: url(https://algopagedev.com/work/preyashi.com/wp-content/uploads/2025/02/cta-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.themart-cta-section.section-padding {
    margin-bottom: 60px;
}
.cta-wrap .row {
    padding: 60px 0;
}
.themart-cta-section .cta-content {
    padding: 25px;
    padding-right: 0;
}
.submit.clearfix .theme-btn-s2 {
    background: var(--primary) !important;
}
.themart-cta-section .cta-content h2 {
    font-weight: 400;
    font-size: 29px;
    line-height: 45px;
    color: #fff;
    margin-bottom: 0;
}
.themart-cta-section .cta-content .input-1 {
  margin-top: 35px;
  position: relative;
  overflow: hidden;
}



.themart-cta-section .cta-content .input-1 .form-control {
  font-weight: 400;
  font-size: 18px;
  line-height: 40px;
  color: #6F6F6F;
  background: #fff;
  padding: 10px 20px;
  padding-right: 0;
  border: 0;
  border-radius: 0;
  max-width: 375px;
}




.themart-cta-section .cta-content .submit {
  position: absolute;
  right: 0;
  top: 0;
}

.themart-cta-section .cta-content .submit .theme-btn-s2 {
  border: 0;
  font-family: Inter;
  font-weight: 700;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  padding: 11px 40px;
  border-radius: 0;
}



.themart-cta-section .cta-content .submit .theme-btn-s2::before {
  border-radius: 0;
}

.themart-cta-section .cta-content .submit .theme-btn-s2:hover {
  background: #83B735;
}

.menutop .current-menu-parent a {
    color: #333 !important;
}
.secondary-wraper.clearfix {
    margin: 50px 0;
}
.breadcrumb {
    padding: 60px 0!important;
    background: linear-gradient(45deg, black, #feeb9c);
}
figure.alignwide.wp-block-post-featured-image img {
    width: 60%;
}
.product-info bdi{
	font-size: 20px !important;
    font-weight: 500 !important;
}



/* css added by Avi */

@media (max-width: 768px){
	.notification {
		display: none !important;
	}
	.hdrsocial li img {
    width: 12px !important;
	}
	.xoo-wsc-sc-bki {
    font-size: 18px !important;
	}
	span.xoo-wsc-sc-count {
	height: 10px !important;
    line-height: 11px !important;
    width: 10px !important;
	font-size: 10px !important;
	}
	span.woocommerce-Price-amount.amount {
    font-size: 10px !important;
	}
	.menutop li a {
	font-size: 12px !important;
	}
	.enable-animation ul li {
	font-size: 12px !important;
	}
	.enable-animation {
    background: #f98b881c !important;
	padding: 5px 0 5px !important;
	}
	.enable-animation ul li img {
	width: 20px !important;
	}
	button.slick-prev.slick-arrow{
	height: 40px !important;
    width: 40px !important;
	}
	button.slick-prev.slick-arrow {
    left: -5px !important;
	}
	button.slick-next.slick-arrow {
    right: -5px !important;
	}
	button.slick-prev.slick-arrow, button.slick-next.slick-arrow { 
	height: 40px !important;
    width: 40px !important;
	}
	.xoo-wsc-basket {
	width: 45px !important;
    height: 40px !important;
	}
	.xoo-wsc-bki {
    font-size: 26px !important;
	}
	.xoo-wsc-items-count {
    top: -4px !important;
    left: -6px !important;
	}
	.xoo-wsc-items-count {
	font-size: 9px !important;
    width: 18px !important;
    height: 17px !important;
	line-height: 21px !important;
	}
	.menutop li.menu-item-has-children:after {
	font-size: 10px !important;
    right: 1px !important;
    top: 1px !important;
	color: #333 !important;	
	}
	.menutop li a {
	font-size: 10px !important;
	}
	.category-item h3{
		font-size: 12px !important;
	}
	.heading {
		font-size: 18px !important;
	}
	.product-info h3 a{
		font-size: 14px !important;
	}
	.btn-primary{
		padding: 5px 25px !important;
		font-size: 12px !important;
	}
	footer .col-lg-3 {
    border-right: 1px solid #ffffff14 !important;
    padding: 12px 30px !important;
	}
	footer h4{
		font-size: 14px !important;
		margin-bottom: 14px !important;
	}	
	p {
		font-size: 12px !important;
	}
	.copyright p, .copyright p a {
    font-size: 9px !important;
	}
	#GoToTop{
		width: 30px !important;
		height: 30px !important;
		bottom: 18px !important;
		padding-top: 4px !important;
	}
	.wp-block-post-title :where(a) {
		font-size: 18px !important;
	}
	h3.widget-title{
		font-size: 18px;
	}
	.prdctlst h2 {
		font-size: 12px;
	}
	.product-info h3 {
    margin-bottom: unset;
	}
	
	.product-info h3 a {
		font-size: 20px;
    color: var(--black);
    letter-spacing: 0;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    line-height: 30px;
	}
}

@media only screen and (max-width: 1024px) {
  footer .col-lg-3 {
    border-right: 1px solid #ffffff14;
    padding: 40px 30px;
    width: 50%;
  }

  li.product-category.product a h2.woocommerce-loop-category__title {
    font-size: 14px !important;
  }

  .menutop li a {
    font-size: 14px;
  }

  #mega-menu-wrap-primary #mega-menu-primary {
    column-gap: 3px !important;
    padding: 15px 20px !important;
  }
}
.secondary-container.privacy_policy li {
    list-style: outside !important;
}

/* Features Section Styles */
.features-section {
  padding: 50px 0;
  background-color: #fff;
}

.features-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-item {
  flex: 1 1 220px;
  text-align: center;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 30px;
  color: #000;
  margin-bottom: 15px;
}

.feature-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.feature-item p {
  font-size: 14px;
  color: #555;
  margin: 0;
}
