/*
Theme Name: Custom Theme
Text Domain: Custom Theme
Version: 1.0
Tested up to: 1.0
Requires at least: 4.7
Requires PHP: 7.4
Description: Customized Theme for Wordpress
Author: Canisys
Author URI: https://dtgallery.net/
Theme URI: 
*/
*{
	box-sizing:border-box;
}
body{
	overflow-x:hidden;
}
html,body,h1,h2,h3,h4,h5,h6,p{
	margin:0px !important;
	padding:0px !important;
}

.above-header-text {
	height: 20px !important;
}

.above-header-bold-text {
	font-weight: 600 !important;
    font-size: 14px;
    line-height: 20px;
    font-style: italic;
}

.header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: background-color 0.3s ease, top 0.7s ease !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}



/* Header Running Text */

.header-running-text-box {
	position: relative;
	overflow: hidden;
	white-space: nowrap;
}

.header-running-text-box .above-header-text {
	display: inline-block;
	white-space: nowrap;
	animation: running-text 30s linear infinite;
}

.header-text-divider {
	margin-left: 10px;
	margin-right: 10px;
}

/* Animation keyframes */
@keyframes running-text {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}



.custom-header-menu-1 .elementskit-navbar-nav li:nth-child(4),
.custom-header-menu-1 .elementskit-navbar-nav li:nth-child(5),
.custom-header-menu-1 .elementskit-navbar-nav li:nth-child(6) {
  	display: none;
}

.custom-header-menu-2 .elementskit-navbar-nav li:nth-child(1),
.custom-header-menu-2 .elementskit-navbar-nav li:nth-child(2),
.custom-header-menu-2 .elementskit-navbar-nav li:nth-child(3) {
  	display: none;
}

.custom-header .custom-header-menu-1 .elementskit-navbar-nav .menu-item .active,
.custom-header .custom-header-menu-2 .elementskit-navbar-nav .menu-item .active {
	font-weight: 500;
}


.header-icons {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-icons a {
  color: #ffffff;
  font-size: 20px;
  position: relative;
  transition: all .18s ease;
}

.header-icons a:hover {
  color: #ffcc29; /* hover color */
  transform: scale(1.08);
}

.custom_searchform_icon:hover path {
  stroke: #ffcc29; /* hover color */
}

.header-icons .cart-count, .header-icons .wishlist-count {
  background: #ffcc29;
  color: #000000;
  font-family: "Poppins", Sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  line-height: 18px !important;
  border-radius: 50%;
/*   padding: 2px 6px; */
  position: absolute;
  top: -8px;
  right: -10px;
  width: 22px;
  height: 20px;
  padding-top: 1px;
  text-align: center;
}


/* Search Button */

/* ---------- Overlay ---------- */
.custom_search_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;              /* default: don't block when inactive */
  transition: opacity 0.8s cubic-bezier(.2,.9,.2,1), visibility 0.8s;
  -webkit-tap-highlight-color: transparent;
  touch-action: none;                /* helps intercept touch scrolling */
}

.custom_search_overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;               /* fully blocks clicks / wheel events */
/*   z-index: 19; */
}

/* ---------- Popup input ---------- */
/* wrapper .custom_searchform remains in header DOM; only the input is fixed and modal-like */
.custom_searchform_input {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(12px) scale(0.98);
  width: 0;
  opacity: 0;
  padding: 0;
  font-size: 16px;
  border: none;
  outline: none;
  border-radius: 999px;
  background: #fff;
  color: #111;
  box-shadow: 0 14px 50px rgba(8,18,40,0.32);
  z-index: 9999;
  transition:
    transform 0.8s cubic-bezier(.16,1,.3,1),
    opacity 0.8s ease,
    width 0.8s cubic-bezier(.2,.9,.2,1);
  will-change: transform, width, opacity;
  pointer-events: none;
}

/* visible state */
/* .custom_searchform.active .custom_searchform_input {
  width: 300px;
  padding: 14px 22px;
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0) scale(1);
  z-index: 20;
} */

/* show input when overlay is active */
.custom_searchform_input.active {
  width: 300px;
  padding: 14px 22px;
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0) scale(1);
  pointer-events: auto;
}

/* focus glow */
.custom_searchform_input:focus {
  box-shadow: 0 10px 40px rgba(42, 100, 255, 0.16), 0 0 20px rgba(55, 120, 255, 0.16);
  border: 1px solid #ed3237;
}

/* icon sits as usual in header (z-index high so clickable) */
.custom_searchform_toggle {
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
}

/* subtle icon scale on hover */
.custom_searchform_icon {
  width: 22px !important;
  height: 22px !important;
  transition: transform .18s ease;
}
.custom_searchform_toggle:hover .custom_searchform_icon {
  transform: scale(1.08);
}
	

/* Banner Slider */

.home-banner-container .bdt-flex-center {
    justify-content: flex-end !important;
}

.home-banner-container .bdt-prime-slider-skin-general .bdt-prime-slider-wrapper {
    width: 40% !important;
}

.home-banner-container .bdt-dotnav {
	left: unset !important;
	width: 100% !important;
    margin: auto !important;
    justify-content: center !important;
	padding-bottom: 25px !important;
}

.home-banner-container .bdt-prime-slider-skin-general .bdt-slideshow-nav li a {
    width: 14px !important;
    height: 14px !important;
}

.home-banner-container .bdt-slideshow-nav li a:before {
    display: none !important;
}


/* Custom Button */

.custom-thangam-button, 
.bdt-slide-btn, 
.quick-add .button, 
.eael-woo-product-carousel .add_to_cart_button, 
.woocommerce-variation-add-to-cart .single_add_to_cart_button,
.woocommerce-orders-table__cell .woocommerce-button, 
body:not(.logged-in).woocommerce-order-received  .woocommerce-form-login .woocommerce-form-login__submit {
	font-family: "Poppins", Sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    line-height: 19px !important;
	background-color: #f4b400 !important;
    color: #000000 !important;
	padding: 10px 36px 10px 36px !important;
    border-radius: 30px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.custom-thangam-button:hover, 
.bdt-slide-btn:hover, 
.quick-add .button:hover, 
.eael-woo-product-carousel .add_to_cart_button:hover, 
.woocommerce-variation-add-to-cart .single_add_to_cart_button:hover, 
.woocommerce-orders-table__cell .woocommerce-button:hover, 
body:not(.logged-in).woocommerce-order-received .woocommerce-form-login .woocommerce-form-login__submit:hover {
	background: #e09e00 !important;
}


/* Product Cards */

.product-image-wrapper {
  position: relative;
  overflow: hidden;
}

.product-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

/* Hide hover image by default */
.product-image-wrapper .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

/* Apply hover effect only when hover image exists */
.product-image-wrapper.has-hover-image:hover .hover-image {
  opacity: 1;
  visibility: visible;
}

.product-image-wrapper.has-hover-image:hover .main-image {
  opacity: 0;
}

/* Optional: subtle zoom */
.product-image-wrapper.has-hover-image:hover img {
  transform: scale(0.8);
}


/* Combo Offer Section */
/* 
.combo-offer-section .product .yith-wcqv-button {
	display: none !important;
} */

/* .combo-offer-section .product .yith-add-to-wishlist-button-block, .combo-offer-section .quick-view-box {
	display: none;
} */

.combo-offer-section .product .eael-product-wrap {
	padding-bottom: 25px;
}

.combo-offer-section .product .eael-product-wrap .add_to_cart_button {
	width: 140px;
	margin: auto !important;
    margin-top: 30px !important;
    padding: .5em 2em !important;
    border-radius: 20px !important;
    transition: all .3s ease !important;
}

.combo-offer-section .product .eael-product-wrap .product_type_variable {
	display: none !important;
}

.combo-offer-section .product .eael-product-wrap .eael-product-title, .combo-offer-section .product .eael-product-wrap .eael-product-price {
	margin-top: 10px;
}

.combo-offer-section .product .eael-product-wrap .woocommerce-Price-amount {
	margin-right: 10px;
}



/* Custom Product Grid Section */

.custom-product-grid-section .custom-product-card {
	list-style-type: none;
	min-height: 570px;
}

.custom-product-grid-section .custom-product-card .product-price {
/* 	width: 55%; */
	width: 100%;
}

.custom-product-grid-section .custom-product-card .product-qty {
	display: flex;
	column-gap: 5px;
	justify-content: flex-end;
	align-items: center;
	width: 50%;
    position: relative;
    bottom: 37px;
    left: 50%;
	padding-right: 10px;
}

.custom-product-grid-section .custom-product-card .product-qty .quantity input {
	width: 40px;
}

.custom-product-grid-section .custom-product-card .product-variation .single_variation_wrap .quantity,
.custom-product-grid-section .custom-product-card .product-variation .variations .label,
.custom-product-grid-section .custom-product-card .product-variation .variations .value .reset_variations {
	display: none !important;
}

/* .custom-product-grid-section .custom-product-card .product-variation .variations .value select {
	width: 94px !important;
	padding: 4px 12px;
	background-color: #f2f2f2;
    border: 1px solid #ed3137 !important;
} */

.custom-product-grid-section .custom-product-card .product-variation .variations .value select {
	width: 94px !important;
	padding: 4px 12px;
	background-color: #f2f2f2;
    border: 1px solid #ed3137 !important;
	margin-left: 10px;
/* 	appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
	cursor: pointer;
  	position: relative; */
}

/* Custom Arrow */
/* .custom-product-grid-section .custom-product-card .product-variation .variations .value select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23e74c3c' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px 20px;
} */

/* Optional: Hover/Focus border */
.custom-product-grid-section .custom-product-card .product-variation .variations .value select:hover, 
.custom-product-grid-section .custom-product-card .product-variation .variations .value select:focus {
  border-color: #e74c3c !important;
  outline: none !important;
}

.custom-product-grid-section .custom-product-card .product-variation .product-qty {
	bottom: 42px;
}

.custom-product-grid-section .custom-product-card .quick-add,
.custom-product-grid-section .custom-product-card .product-variation .single_variation_wrap .woocommerce-variation-add-to-cart {
	text-align: center;
	display: flex;
    justify-content: center;
}

.custom-product-grid-section .custom-product-card .title-rating-box {
	display: flex;
    justify-content: space-between;
    padding: 10px;
}

/* ===== Custom Product Card Styling ===== */
.custom-product-item {
  list-style: none;
}

.custom-product-card {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.custom-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* .custom-products-grid-2 .custom-product-item {
  border: 1px solid #f1eaea;
}

.product-page-combo .custom-products-grid .custom-product-item {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
} */


.custom-products-grid-2 .custom-product-card .product-price .price span:nth-child(2) {
	position: relative !important;
    top: -3px !important;
}


/* Product Thumbnail */
.custom-product-card .product-thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Title + Rating */
.title-rating-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  margin-bottom: 10px;
}

.title-rating-box .product-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
  text-align: left;
}

.rating-box .product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #084c4a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  padding: 2px 8px;
}

.rating-box svg {
  fill: #ffffff;
  stroke: #ffffff;
}

/* Product Tags */
.product-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: center;
}

.product-tags .tag {
  background: #e74c3c;
  color: #fff;
  font-size: 12px;
  padding: 4px 20px;
  border-radius: 20px;
  font-weight: 500;
}

.product-tags .tag:first-child {
  background: #ed3237; /* Limited Combos */
}

.product-tags .tag:last-child {
  background: #ed3237; /* Next Day Dispatch */
}

/* Price */
.product-price {
  margin: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-left: 10px;
}

.product-price del {
  color: #aaa;
  margin-right: 8px;
  font-size: 14px;
}

.product-price ins {
  color: #e74c3c;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
}

/* Variation Dropdown */
.product-variation .variations {
  width: 100%;
  margin-bottom: 10px;
}

.product-variation select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border 0.3s;
}

.product-variation select:focus {
  border-color: #e74c3c;
}

/* Quantity Selector */
.quantity {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: #e4e4e4;
  border: 2px solid #dcdee3;
  border-radius: 5px;
  overflow: hidden;
}

.quantity button {
  width: 28px;
  height: 28px;
  border: none;
  background: #e4e4e4;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quantity button:hover {
  background: #e74c3c;
  color: #fff;
}

.quantity input.qty {
  width: 50px;
  text-align: center;
  border: none;
  padding: 5px;
  background-color: #e4e4e4;
}

/* Hide arrows in number input (Chrome, Safari, Edge, Opera) */
.custom-product-grid-section .custom-product-card .quantity input[type=number]::-webkit-inner-spin-button, 
.custom-product-grid-section .custom-product-card .quantity input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}

/* Hide arrows in number input (Firefox) */
.custom-product-grid-section .custom-product-card .quantity input[type=number] {
  -moz-appearance: textfield !important;
}


/* Add to Cart Button */
.single_add_to_cart_button,
.custom-product-card .button {
/*   display: block ;
  width: 150px;
  background-color: #f4b400 ;
  color: #000 ;
  font-size: 16px ;
  font-weight: 600 ;
  padding: 12px ;
  border-radius: 30px ;
  border: none ;
  cursor: pointer ;
  transition: all 0.3s ease ;
  margin: auto ; */
  position: absolute !important;
  bottom: 30px ;
}

/* .single_add_to_cart_button:hover,
.custom-product-card .button:hover {
  background: #e09e00 ;
} */

.custom-product-grid-section .custom-product-card .product-title {
	color: #000000;
    font-family: "Lato", Sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

.custom-product-grid-section .custom-product-card .rating-value {
	color: #ffffff;
    font-family: "Lato", Sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
}

.custom-product-grid-section .custom-product-card .product-tags .tag {
	color: #ffffff;
    font-family: "Lato", Sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

.custom-product-grid-section .custom-product-card .woocommerce-Price-amount {
	font-family: "Lato", Sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    line-height: 20px;
}

.custom-product-grid-section .custom-product-card .product-qty h3,
.custom-product-grid-section .custom-product-card .product-qty .quantity input,
.custom-product-grid-section .custom-product-card .variations .value select {
	color: #000000;
    font-family: "Lato", Sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.custom-product-grid-section .custom-product-card .single_add_to_cart_button, .custom-product-grid-section .custom-product-card .quick-add a {
	font-family: "Poppins", Sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    line-height: 19px;
}



/* Responsive */

@media only screen and (min-width: 821px) and (max-width: 1024px) {
	
	.custom-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
	
	.custom-products-grid-2 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
	
	.related .products .custom-product-card { 
        width: 50% !important;
		margin: 0 !Important;
	}
	
	.custom-product-grid-section .custom-product-card {
		min-height: 730px;
	}
	
	.custom-product-grid-section .custom-product-card .product-variation .variations .value select {
		width: 130px !important;
	}
	
}


@media only screen and (min-width: 769px) and (max-width: 820px) {
	
	.custom-product-grid-section .custom-product-card {
        min-height: 660px;
    }
	
}


@media only screen and (min-width: 601px) and (max-width: 768px) {
	
	.custom-product-grid-section .custom-product-card {
        min-height: 630px;
    }
	
}


@media only screen and (min-width: 601px) and (max-width: 820px) {
	
	.custom-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
	
	.related .products .custom-product-card {
/* 		width: 29.5% !important; */
		width:46% !important; 
	}
	
	.custom-product-grid-section .custom-product-card .product-variation .variations .value select {
		width: 130px !important;
	}
	
}


@media (max-width: 600px) {
	
	.title-rating-box {
		/*     flex-direction: column; */
		align-items: flex-start;
		gap: 5px;
	}
	.title-rating-box  .title-box{
		flex-grow:1;
	}
	
}


@media (max-width: 600px) {
	
	.custom-product-grid-section .custom-product-card {
		min-height: 730px;
	}
	
	.custom-product-grid-section .custom-product-card .product-variation .variations .value select {
		width: 50% !important;
		min-width:170px !important; 
		margin-inline: auto;
        display: block;
    }
	
	.custom-product-grid-section .custom-product-card .product-qty {
		bottom: 0px;
		left: unset;
		justify-content: center;
        margin-top: 15px;
		width: 100%;
	}
	
	.custom-product-grid-section .custom-product-card .product-variation .product-qty {
		bottom: 0px;
		left: unset;
		justify-content: center;
        margin-top: 15px;
		width: 100%;
	}
	
	.custom-product-grid-section .custom-product-card .product-price {
		margin: auto;
		margin-bottom: 15px;
	}
	
	.custom-product-grid-section .custom-product-card .product-price .price {
		display: flex;
		justify-content: center;
		column-gap: 5px;
	}
	
	
}


@media only screen and (min-width: 391px) and (max-width: 430px) {
	
	.custom-product-grid-section .custom-product-card {
		min-height: 730px;
	}
	
}


@media only screen and (min-width: 376px) and (max-width: 390px) {
	
	.custom-product-grid-section .custom-product-card {
		min-height: 690px;
	}
	
}


@media (max-width: 375px) {
	
	.custom-product-grid-section .custom-product-card {
		min-height: 670px;
	}
	
}


/* Categories Slider Section */

.categories-slider-box .woopspro-product-slider .products li {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
	background-color: #ffffff !important;
    width: 90% !important;
	padding-bottom: 30px !important;
}

.categories-slider-box .woopspro-product-slider .products li .woocommerce-loop-product__title, .categories-slider-box .woopspro-product-slider .products li .price {
	text-align: center !important;
}

.categories-slider-box .woopspro-product-slider ul.products li.product a img {
    border-top: 4px solid #ffffff !important;
}

.categories-slider-box .woopspro-product-slider .products li .woocommerce-loop-product__title {
	color: #000000 !important;
    font-family: "Lato", Sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 26px !important;
}

.categories-slider-box .woopspro-product-slider .products li .price {
	color: #000000 !important;
	font-family: "Poppins", Sans-serif !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    line-height: 26px !important;
	margin-top: 10px !important;
}

.categories-slider-box .woopspro-product-slider ul.products li.product .button {
    font-family: "Poppins", Sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 19px !important;
    margin-top: 15px !important;
	color: #000000 !important;
    background-color: #ffcc00 !important;
	padding: .5em 2em !important;
    border-radius: 20px !important;
	transition: all .3s ease !important;
}

.categories-slider-box .woopspro-product-slider ul.products li.product .button:hover {
	background-color: #CFA600 !important;
}

.categories-slider-box .woopspro-product-slider button.slick-arrow {
    padding: 20px 20px !important;
    border-radius: 50% !important;
    background-color: #ffffff !important;
}

.categories-slider-box .woopspro-product-slider button.slick-prev {
    left: -15px !important;
	background: #ffffff url(https://dtgallery.net/thangam/beta/wp-content/uploads/2025/09/back.png) center center no-repeat !important;
}

.categories-slider-box .woopspro-product-slider button.slick-next {
    right: 10px !important;
	background: #ffffff url(https://dtgallery.net/thangam/beta/wp-content/uploads/2025/09/forward.png) center center no-repeat !important;
}

.categories-slider-box .woopspro-product-slider button.slick-prev:hover {
	background: #ffffff url(https://dtgallery.net/thangam/beta/wp-content/uploads/2025/09/back.png) center center no-repeat !important;
}

.categories-slider-box .woopspro-product-slider button.slick-next:hover {
	background: #ffffff url(https://dtgallery.net/thangam/beta/wp-content/uploads/2025/09/forward.png) center center no-repeat !important;
}

.categories-slider-box .woopspro-product-slider .yith-wcwl-add-to-wishlist-button,
.categories-slider-box .woopspro-product-slider .yith-add-to-wishlist-button-block,
.categories-slider-box .woopspro-product-slider .yith-wcqv-button {
	display: none !important;
}


.categories-slider-text-editor span {
	cursor: pointer;
	padding: 0 5px;
	transition: color 0.3s ease;
	margin-left: 30px;
    margin-right: 30px;
}

.categories-slider-text-editor span.active {
  	color: #ffcc00;
}

.categories-slider-box .woopspro-product-slider .product .quantity, .categories-slider-box .woopspro-product-slider .product .added_to_cart {
	display: none;
}


.test-categories-slider-box .eael-product-carousel .view-details, .test-categories-slider-box .eael-product-carousel .icons-wrap {
	display: none !important;
}

.test-categories-slider-box .eael-product-carousel .add-to-cart {
    margin-top: 15px;
    text-align: center;
    list-style: none;
}

/* .test-categories-slider-box .eael-product-carousel .add-to-cart a.button {
    display: inline-block !important;
	font-family: "Poppins", Sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    line-height: 19px !important;
	color: #000000 !important;
    background-color: #FFCC00 !important;
	padding: 0.5em 2em !important;
    border-radius: 20px !important;
    transition: 0.3s !important;
} */

/* .test-categories-slider-box .eael-product-carousel .add-to-cart a {
	font-size: 20px !important;
} */

/* .test-categories-slider-box .eael-product-carousel .add-to-cart a.button:hover {
    background-color: #CFA600 !important;
} */

/* .test-categories-slider-box .eael-product-carousel .image-wrap img {
	border: 4px solid #ffffff !important;
} */

.test-categories-slider-box .eael-product-carousel .eael-product-price {
	margin-top: 5px !important;
}

.test-categories-slider-box .eael-woo-product-carousel-container .swiper-button-prev {
    left: -4px !important;
}

.test-categories-slider-box .eael-woo-product-carousel-container .swiper-button-next {
    right: -4px !important;
}


.test-categories-slider-box {
	opacity: 0 !important;
	visibility: hidden !important;
	transform: translateY(10px);
	transition: opacity 1s ease, transform 1s ease, visibility 1s !important;
	position: absolute !important; /* prevent layout shift while switching */
	width: 100% !important;
}

.test-categories-slider-box.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
    position: relative !important;
}




/* Our Products Section */

.our-products-section .product .yith-add-to-wishlist-button-block ,
.yith-add-to-wishlist-button-block {
	display: flex;
    justify-content: end;
	width: unset !important;
	transition: all .3s ease;
}

.our-products-section .product .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button ,
.yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button {
	opacity: 0;
    visibility: hidden;
    transform: translateY(10px); /* small slide effect */
    transition: all 0.3s ease;
}

.our-products-section .product .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button svg,
 .yith-wcwl-add-to-wishlist-button svg{
	width: 22px !important;
    height: 24px !important;
}

.our-products-section ul.products li.product:hover .yith-wcwl-add-to-wishlist-button, .our-products-section ul.products li.product:hover .yith-wcqv-button {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.our-products-section .product .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button__label {
	display: none;
}

.our-products-section .product .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button,
.yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button {
	display: unset !important;
	border: none;
    background-color: #ffcc00;
    border-radius: 50%;
	padding: 3px 5px;
    width: 32px;
}

.our-products-section .product .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button .yith-wcwl-icon path,
.yith-wcwl-add-to-wishlist-button .yith-wcwl-icon path{
	color: #e82d36;
}

.our-products-section .product .yith-wcqv-button {
/* 	display: block !important; */
	position: absolute;
    top: 65px;
    right: 35px;
	font-size: 0 !important;
	display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
	background-color: #e82d36 !important;
    padding: 5px 5px !important;
    border-radius: 50% !important;
	opacity: 0;
    visibility: hidden;
    transform: translateY(10px); /* small slide effect */
    transition: all 0.3s ease;
}

.our-products-section .product .yith-wcqv-button::before {
    content: '' !important;
    display: inline-block !important;
    width: 21px !important;   /* adjust size */
    height: 21px !important;
    background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23fff' stroke-width='2' viewBox='0 0 24 24'><path stroke-linecap='round' stroke-linejoin='round' d='M2.458 12C3.732 7.943 7.522 5 12 5s8.268 2.943 9.542 7c-1.274 4.057-5.064 7-9.542 7s-8.268-2.943-9.542-7z'/><circle cx='12' cy='12' r='3'/></svg>") !important;
}


.our-products-new-section .custom-product-card {
    background: unset !important;
    box-shadow: unset !important;
    overflow: hidden;
    transition: all 0.3s ease;
	padding: 50px;
}

.our-products-new-section .custom-product-item {
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.our-products-new-section .custom-product-item:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.our-products-new-section .custom-product-card .woocommerce-Price-amount {
    color: #e74c3c;
    font-family: "Lato", Sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    line-height: 28px;
}

.our-products-new-section .custom-product-card {
    min-height: 630px !important;
}

.our-products-new-section .wishlist-quick-view-overlay,
.wishlist-quick-view-overlay {
	position: absolute;
    top: 50px;
    right: 50px;
}

.our-products-new-section .custom-product-card .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button__label,
.yith-wcwl-add-to-wishlist-button__label {
	display: none;
}

.our-products-new-section .custom-product-card .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button,
.yith-wcwl-add-to-wishlist-button{
	border: none;
    background-color: #ffcc00;
    border-radius: 50%;
	padding: 5px 5px;
    width: 32px;
	opacity: 0;
    visibility: hidden;
    transform: translateY(10px); /* small slide effect */
    transition: all 0.3s ease;
}

.our-products-new-section .custom-product-card .yith-add-to-wishlist-button-block .yith-wcwl-add-to-wishlist-button .yith-wcwl-icon path {
	color: #e82d36;
}

.our-products-new-section .custom-product-card .yith-wcqv-button ,
.button.yith-wcqv-button{
	width: 31px;
	top: 2px;
    position: relative !important;
	font-size: 0 !important;
	display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
	background-color: #e82d36 !important;
    padding: 5px 5px !important;
    border-radius: 50% !important;
	opacity: 0;
    visibility: hidden;
    transform: translateY(10px); /* small slide effect */
    transition: all 0.3s ease;
}

.our-products-new-section .custom-product-card .yith-wcqv-button::before,
.custom-product-card .yith-wcqv-button::before{
    content: '' !important;
    display: inline-block !important;
    width: 21px !important;   /* adjust size */
    height: 21px !important;
    background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23fff' stroke-width='2' viewBox='0 0 24 24'><path stroke-linecap='round' stroke-linejoin='round' d='M2.458 12C3.732 7.943 7.522 5 12 5s8.268 2.943 9.542 7c-1.274 4.057-5.064 7-9.542 7s-8.268-2.943-9.542-7z'/><circle cx='12' cy='12' r='3'/></svg>") !important;
}

.our-products-new-section .custom-product-card:hover .yith-wcwl-add-to-wishlist-button, .our-products-new-section .custom-product-card:hover .yith-wcqv-button,
.custom-product-card:hover .yith-wcwl-add-to-wishlist-button, .custom-product-card:hover .yith-wcqv-button{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Responsive */

@media (max-width: 1024px) and (min-width:768px){
	
  	.our-products-new-section .custom-product-card {
		padding: 20px !important;
	}
	
}

@media (max-width:767px){
	
  	.our-products-new-section .custom-product-card {
		padding: 0px !important;
	}
	
}


@media only screen and (min-width: 821px) and (max-width: 1024px) {
	
	
	.our-products-new-section .custom-product-card {
		min-height: 730px !important;
	}
	
	
}


@media only screen and (min-width: 769px) and (max-width: 820px) {
	
	
	.our-products-new-section .custom-product-card {
		min-height: 640px !important;
	}
	
	
}


@media only screen and (min-width: 601px) and (max-width: 768px) {
	
	
	.our-products-new-section .custom-product-card {
		min-height: 610px !important;
	}
	
	
}


@media (max-width: 600px) {
	
	
	.our-products-new-section .custom-product-card {
		min-height: 690px !important;
	}
	
	.our-products-new-section .custom-product-card .product-qty {
        width: 70%;
    	left: 15%;
    }
	
	.custom-products-grid-2 .custom-product-card .product-price .price span:nth-child(2) {
		top: 4px !important;
	}
	
	
}


@media only screen and (min-width: 391px) and (max-width: 430px) {
	
	
	.our-products-new-section .custom-product-card {
        min-height: 700px !important;
    }
	
	
}


@media only screen and (min-width: 376px) and (max-width: 390px) {
	
	
	.our-products-new-section .custom-product-card {
        min-height: 650px !important;
    }
	
	
}


@media only screen and (min-width: 361px) and (max-width: 375px) {
	
	
	.our-products-new-section .custom-product-card {
        min-height: 670px !important;
    }
	
	
}


@media only screen and (min-width: 341px) and (max-width: 360px) {
	
	
	.our-products-new-section .custom-product-card {
        min-height: 650px !important;
    }
	
	
}


@media (max-width: 340px) {
	
	
	.our-products-new-section .custom-product-card {
        min-height: 630px !important;
    }
	
	
}



/* Lovable Products Section */

/* .lovable-products-section .lovable-products-grid .woocommerce ul.products li.product a img {
    border: 4px solid #ffffff !important;
} */

.lovable-products-section .lovable-products-grid .woocommerce-loop-product__title,
.lovable-products-section .lovable-products-grid .price {
	margin-top: 10px !important;
}

.lovable-products-section .lovable-products-grid .eael-product-grid.eael-product-default .button.add_to_cart_button::before {
	display: none !important;
}

.lovable-products-section .lovable-products-grid .eael-product-grid .woocommerce li.product .button.add_to_cart_button {
/* 	padding: .5em 2em !important; */
	padding: 10px 36px 10px 36px !important;
    border-radius: 20px !important;
	transition: all .3s ease !important;
}

.lovable-products-section .lovable-products-grid .eael-product-grid .quantity,
.lovable-products-section .lovable-products-grid .eael-product-grid .yith-wcqv-button {
	display: none !important;
}

.lovable-products-section .lovable-products-grid .eael-product-grid .yith-wcwl-add-to-wishlist-button,
.lovable-products-section .lovable-products-grid .eael-product-grid .yith-add-to-wishlist-button-block {
	display: none;
}

.lovable-products-section .lovable-products-grid .custom-product-card {
    background: transparent;
	box-shadow: unset;
}

.lovable-products-section .lovable-products-grid .custom-product-card .title-box {
	width: 100%;
}

.lovable-products-section .lovable-products-grid .custom-product-card .product-title {
	text-align: center;
	color: #000000;
    font-family: "Lato", Sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

.lovable-products-section .lovable-products-grid .quick-add .add_to_cart_button {
	position:static !important;
	margin-top: 15px !important;
}

.lovable-products-section .lovable-products-grid .custom-product-card .quick-add .quick-add-btn {
/* 	width: 130px; */
	border-radius: 20px;
	margin-top: 45px;
}

.lovable-products-section .lovable-products-grid .custom-product-card .product-qty {
	display: none;
}

.lovable-products-section .lovable-products-grid .quick-add a {
	color: #000000 !important;
    background-color: #FFFFFF !important;
}

.lovable-products-section .lovable-products-grid .quick-add a:hover {
	color: #f4b400 !important;
}


/* Testimonial Section */

.testimonials .ekit-wid-con .elementskit-single-testimonial-slider {
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
}

.testimonials .swiper-wrapper .swiper-slide .elementskit-commentor-content {
	display: none;
}

.testimonials .swiper-wrapper .swiper-slide .elementskit-profile-info {
	text-align: left !important;
}

.testimonials .swiper-slide {
	transform: scale(0.96);
	opacity: 0.5;
	transition: transform 0.28s ease, opacity 0.28s ease;
	will-change: transform, opacity;
} 

.testimonials .swiper-slide-active {
	transform: scale(1.03);
  	opacity: 1;
  	z-index: 5;
}









/* Bulk Orders Contact Form */

/* Container */
.custom-contact-form {
  border-radius: 6px;
  margin: auto;
}

/* Two-column layout for inputs */
.custom-contact-form .form-row {
  display: flex;
  gap: 0px;
  margin-bottom: 20px;
}

.custom-contact-form .form-row p {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.custom-contact-form .form-row.full {
  flex-direction: column;
}

/* Input and textarea styles */
.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"],
.custom-contact-form input[type="tel"],
.custom-contact-form textarea {
/*   flex: 1; */
  color: #797979;
  width: 100% !important;
  padding: 12px 15px;
  border: none;
  border-radius: 6px;
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  outline: none;
  background: #fff;
  box-sizing: border-box;
  border: 1px solid #ccc;
}

/* Textarea full width */

.custom-contact-form textarea {
  resize: vertical;
}

.custom-contact-form textarea rows {
  
}

.wpcf7-form-control-wrap {
  width: 100% !important;
}

/* Submit button */
.custom-contact-form .submit-row {
  text-align: center;
}

.custom-contact-form input[type="submit"] {
  background: #e61823;
  color: #fff;
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 60px;
  border: 1px solid #e61823;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: auto;
}

.custom-contact-form input[type="submit"]:hover {
  background: #c40000;
  border: 1px solid #e61823;
}

.custom-contact-form .wpcf7-spinner {
  display: none;
}


.contact-us-page-section .custom-contact-form input[type="submit"] {
  margin: unset !important;
}


/* Bulk Orders Section */

.form-box-image {
	position: absolute;
    right: 0px;
    bottom: 0px;
}


/* About Us Section */

.about-image-box-container .image-box-1 .elementor-image-box-img img {
	position: relative;
    bottom: 12px;
}

.about-image-box-container .image-box-2 .elementor-image-box-img img {
	position: relative;
    bottom: 8px;
}

.about-image-box-container .image-box-3 .elementor-image-box-img img {
	position: relative;
    bottom: 10px;
}

.about-image-box-container .image-box-4 .elementor-image-box-img img {
	position: relative;
    bottom: 10px;
}

.about-us-section .about-us-section-image-2-box {
	position: absolute;
	bottom: -20px;
    right: -60px;
    width: 58%;
}



/* ====== Search Page Styling ====== */

#site-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: "Poppins", Sans-serif;
    color: #464646;
	margin-top: 200px;
}

/* Heading */
#site-content h1 {
	color: #000000 !important;
    font-family: "Lato", Sans-serif;
	text-transform: uppercase;
    font-size: 28px;
	line-height: 38px;
    font-weight: 700;
    margin-bottom: 25px !important;
    border-bottom: 2px solid #ed3237;
    display: inline-block;
    padding-bottom: 6px;
}

/* Results List */
#site-content .search-results {
    list-style: none;
    padding: 0;
    margin: 0;
}

#site-content .search-results li {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 18px 20px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.05);
}

#site-content .search-results li:hover {
    transform: translateY(-2px);
    border-color: #ed3237;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

/* Links */
#site-content .search-results li a {
    display: block;
	font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #464646;
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

#site-content .search-results li a:hover {
    color: #ed3237;
}

/* Excerpt */
#site-content .search-results li p {
	font-family: "Poppins", Sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #464646;
    margin: 0;
}

/* ====== Pagination ====== */
.navigation.pagination {
    text-align: center;
    margin-top: 30px;
}

.navigation .nav-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.navigation .page-numbers {
    display: inline-block;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navigation .page-numbers:hover {
    background: #ecb45b;
    border-color: #ecb45b;
    color: #000;
}

.navigation .page-numbers.current {
    background: #ecb45b;
    border-color: #ecb45b;
    color: #000;
    pointer-events: none;
    cursor: default;
}

.navigation .next.page-numbers {
    font-weight: 600;
}

/* ====== Responsive Design ====== */
@media (max-width: 991px) {
    #site-content {
        padding: 25px 15px;
    }
    #site-content h1 {
        font-size: 24px;
    }
    .search-results li a {
        font-size: 17px;
    }
}

@media (max-width: 600px) {
    #site-content {
        padding: 20px 12px;
		margin-top:260px;
    }
    #site-content h1 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .search-results li {
        padding: 15px;
    }
    .search-results li a {
        font-size: 16px;
    }
    .search-results li p {
        font-size: 14px;
    }
    .navigation .page-numbers {
        padding: 8px 12px;
        font-size: 14px;
    }
}


/* Highlighted keyword */
.search-highlight {
    background-color: #FFCC29;
    color: #000000;
    font-weight: 700;
    padding: 0 2px;
    border-radius: 2px;
}



/* Contact Us page */

.contact-us-icon-box .elementor-icon-box-title {
	margin-bottom: 10px !important;
}

.contact-us-icon-box .elementor-icon-box-icon {
	margin-top: 3px !important;
}



/* MAIN RESPONSIVE STYLING */

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
	

	.header-running-text-box .above-header-text {
		animation: running-text 10s linear infinite;
	}
	
	.home-banner-container .bdt-prime-slider-skin-general .bdt-prime-slider-wrapper {
		padding-top: 40%;
	}
	
	.custom-contact-form .form-row p {
		gap: 0px;
		flex-direction: column;
		width: 100%;
	}
	
	.contact-us-page-section .custom-contact-form input[type="submit"] {
		width: 170px;
	}
	
	.about-image-box-container .elementor-image-box-wrapper {
		display: flex;
    	column-gap: 20px;
	}
	
/* 	.about-image-box-container .elementor-image-box-wrapper .elementor-image-box-description {
		display: none;
	} */
	
	.about-image-box-container .elementor-image-box-img img {
		height: unset !important;
		width: 100px;
		position: relative;
		bottom: 20px !important;
	}
	
	.categories-slider-box {
		padding-left: 10%;
    	padding-right: 10%;
	}
	
	.categories-slider-box .woopspro-product-slider .products li, .categories-slider-box .woopspro-product-slider .products li a:first-child {
		width: 100% !important;
	}
	
	.categories-slider-box .woopspro-product-slider button.slick-arrow {
		display: none !important;
	}
	
	
	
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
	
	
	.header-running-text-box .above-header-text {
		animation: running-text 15s linear infinite;
	}
	
	.home-banner-container .bdt-prime-slider-skin-general .bdt-prime-slider-wrapper {
		padding-top: 20%;
	}
	
	.categories-slider-box {
		padding-left: 20px;
	}
	
	.bulk-order-section-image-3 {
		position: relative;
		bottom: 100px;
	}
	
	
}



/* Apply only on mobile */
@media (max-width: 767px) {
	
	
	  .categories-slider-text-editor {
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
	  }

	  .categories-slider-text-editor span {
		display: inline-block;
		padding: 10px 15px;
	  }

	  /* Hide scrollbar but keep scroll functionality */
	  .categories-slider-text-editor::-webkit-scrollbar {
		display: none;
	  }
	  .categories-slider-text-editor {
		-ms-overflow-style: none;  /* IE/Edge */
		scrollbar-width: none;     /* Firefox */
	  }
	
		.categories-slider-text-editor span {
			margin-left: 10px !important;
			margin-right: 10px !important;
		}
	
	
}



/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 820px) {
	
	
	.categories-slider-text-editor span {
		margin-left: 20px;
		margin-right: 20px;
	}
	
	
}


@media only screen and (min-width: 769px) and (max-width: 820px) {
	
	
	.categories-slider-box .woopspro-product-slider button.slick-next {
		right: 7px !important;
	}
	
	
}


@media only screen and (min-width: 601px) and (max-width: 768px) {
	
	
	.categories-slider-box .woopspro-product-slider .products li {
		width: 88% !important;
	}
	
	.categories-slider-box {
        padding-left: 30px !important;
    }
	
	.categories-slider-box .woopspro-product-slider button.slick-next {
		right: 25px !important;
	}
	
	
}


@media only screen and (min-width: 768px) and (max-width: 768px) {
	
	
	.woocommerce-product-gallery .flex-control-thumbs {
/* 		width: 131.3px !important; */
		width: 123.5px !important;
	}
	
	
}


@media only screen and (min-width: 769px) and (max-width: 820px) {
	
	
	.woocommerce-product-gallery .flex-control-thumbs {
/* 		width: 141.5px !important; */
		width: 123.7px !important;
	}
	
	
}


@media only screen and (max-width: 820px) {
	
	
	.woocommerce-product-gallery {
		width: 100% !important;
		margin-bottom: 30px;
	}
	
	.woocommerce-page div.product div.summary {
		width: 100% !important;
	}
	
	
}


@media only screen and (min-width: 821px) and (max-width: 1024px) {
	
	
	.woocommerce-product-gallery .flex-control-thumbs {
/* 		width: 80px !important; */
		width: 88.3px !important;
	}
	
	
}


@media only screen and (max-width: 1024px) {
	
	.custom-header-menu-2 .elementskit-navbar-nav li:nth-child(1),
	.custom-header-menu-2 .elementskit-navbar-nav li:nth-child(2),
	.custom-header-menu-2 .elementskit-navbar-nav li:nth-child(3) {
		display: block;
	}
	
	.above-header-text {
		height: unset !important;
	}
	
	/* Overlay for Prime Slider slides */
	.home-banner-container .bdt-slideshow-item .bdt-ps-slide-img::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.6); /* Change opacity/color as needed */
		z-index: 1;
	}

	/* Make sure the slide image is positioned correctly */
	.home-banner-container .bdt-slideshow-item .bdt-ps-slide-img {
		z-index: 0;
	}

	/* Ensure slider content appears above the overlay */
	.home-banner-container .bdt-slideshow-item .bdt-prime-slider-wrapper {
		z-index: 2;
	}
	
	.home-banner-container .bdt-prime-slider-skin-general .bdt-slideshow-nav {
		display: none !important;
	}
	
	.home-banner-container .bdt-prime-slider-skin-general .bdt-prime-slider-wrapper {
		width: 100% !important;
	}
	
	.home-banner-container .bdt-title-tag {
		text-align: center !important;
	}
	
	.home-banner-container .bdt-btn-wrapper {
		width: 100% !important;
    	justify-content: center !important;
	}
	
	.about-us-section .about-us-section-image-2-box {
		position: unset !important;
		bottom: unset !important;
		right: unset !important;
		width:unset !important;
	}
	
	ul.tabs.wc-tabs {
		column-gap: 40px !important;
		row-gap:20px;
	}
	
	.related .products .custom-product-card {
/* 		width: 29.5% !important; */ 
		margin-bottom: 1em !important;
	}
	
	
}


@media only screen and (min-width: 1500px) {
	
	
	.product-page-combo .custom-product-card{
		min-height: 750px !important;
	}
	.combo-offer-section .e-con-inner {
		max-width: 1400px;
	}
	
	.categories-slider-box .woopspro-product-slider button.slick-next {
		right: 15px !important;
	}
	
	.lovable-products-section .e-con-inner, .categories-slider-section .e-con-inner {
		max-width: 1500px;
	}
	
	.moment-section {
		min-height: 560px !important;
	}
	
	.testimonial-section {
		min-height: 840px !important;
	}
	
	.testimonial-section-main-box {
		width: 100% !important;
	}
	
	.bulk-orders-section {
		min-height: 800px !important;
	}
	
	.contact-form-box {
		width: 42% !important;
	}
	
	.about-us-section .about-us-section-image-2-box {
		bottom: -60px;
		right: -125px;
		width: 70%;
	}
	
	.custom-product-grid-section .e-con-inner {
		max-width: 1400px;
	}
	
	.custom-product-grid-section .custom-product-card {
		min-height: 630px;
	}
	
	.our-products-new-section .custom-product-card {
		min-height: 690px !important;
	}
	
	.woocommerce-product-gallery .flex-control-thumbs {
/* 		width: 116px !important; */
		width: 135px !important;
	}
	
	#yith-quick-view-modal .yith-wcqv-wrapper {
		top: 15% !important;
		height: 70% !important;
	}
	
	
}


/* Single Product Page */

.custom-single-product{
	font-family: "Lato", Sans-serif;
}
.custom-single-product {
    padding-block: 100px;
    padding-inline: 20px;
    max-width: 1400px;
    margin: auto;
}
.custom-wc-title h1{
	color:#000;
	font-family: "Lato", Sans-serif;
	font-weight:700;
	margin-bottom:15px;
	font-size:35px;
}
.custom-wc-price{
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	justify-content:start;
	color:#000;
	font-family: "Lato", Sans-serif;
	font-weight:700;
	margin-bottom:15px;
	font-size:20px;
	gap:12px;
	margin-block:20px;
}
.custom-wc-price .price{
	color:#ed3237 !important;
	font-size:20px !important;
}
.custom-wc-add-to-cart form.cart {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start; 
}
.custom-wc-add-to-cart .quantity {
    background: #e4e4e4;
    padding: 0 0px;
	border-radius: 3px;
	margin-left:45px !important;
	margin-bottom:20px !important;
	margin-top: 10px !important;
}
.custom-wc-add-to-cart .quantity button,
.custom-wc-add-to-cart .quantity input {
	background:none;
	border:none;
	outline:none;
	font-size:18px;
	font-weight:700;
	cursor:pointer;
}
.custom-wc-add-to-cart .quantity input {
	width: 40px !important;
/*     text-align: right !important; */
}
.product-rating-number,
.rating-number {
    font-weight: 500;
    color: #555;
    margin-left: 5px;
    font-size: 14px;
}

.custom-wc-add-to-cart  .single_add_to_cart_button{
	background-color:#ffcc00 !important;
	font-family:"Poppins";
	font-weight:500 !important;
	font-size:18px !important; 
	color:#000 !important;
	border-radius: 12px !important;
    padding-inline: 30px !important;
}
.summary .rating-box .product-rating{
	padding: 5px 8px;
    width: 65px;
}
.custom-wc-title {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.custom-single-product .custom-variations .single_variation_wrap .woocommerce-variation-add-to-cart .single_add_to_cart_button,
.custom-single-product .custom-wc-add-to-cart .custom-qty .cart .single_add_to_cart_button {
	position: relative !important;
	bottom: 0px;
}

.custom-wc-add-to-cart  {
	position:relative;
}
.custom-wc-add-to-cart   .qyt{
	position:absolute;
	top:10px;
}
.custom-product-tags{
	padding:0;
	display:inline-flex;
	flex-direction:column;
	gap:15px;
}
.custom-product-tags li {
    background-color: #ed3237; 
    padding: 8px 20px;
    color: white;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    display: block;
    max-width: 100%;
    box-sizing: border-box;
}
.woocommerce-notices-wrapper {
    margin-bottom: 30px;
	max-width: 1200px;
    margin-inline: auto;
	padding: 0 20px;
}
/* .woocommerce-product-gallery .flex-viewport,
.woocommerce-product-gallery__image{
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.woocommerce-product-gallery__image {
    padding: 20px;
    box-sizing: border-box;
}
.woocommerce div.product div.images.woocommerce-product-gallery {
    display: flex;
    flex-direction: row-reverse;
	gap:30px;
}
ol.flex-control-nav.flex-control-thumbs {
    display: flex;
    flex-direction: column;
    min-width: 150px;
    gap: 25px;
}
.woocommerce div.product div.images .flex-control-thumbs li{
	width:100%;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
} */
.flex-direction-nav{
	position:absolute;
	opacity:0 !important;
}
.variations select#weight {
	color: #000000;
	font-family: "Lato", Sans-serif;
	font-weight: 700;
/*     border: none; */
    width: auto;
    min-width: auto;
	outline:none;
	padding: 4px 12px;
    background-color: #f2f2f2; 
    border-radius: 6px;
	border: 1px solid #ed3137 !important; 
/* 	padding-right:25px; */
}
.single-product  .variations select#weight {
	padding-right: 29px;
}
.custom-variations .variations{
	text-align:left;
}
.custom-variations .quantity{
/* 	margin-left:0 !important; */
}
.custom-variations .qyt{
	top:70px !important;
	font-weight: bold;
}

.quantity button:hover {
    color: rgb(255, 255, 255);
    background: rgb(231, 76, 60) !important;
}

.custom-variations  .variations_button{
    display: flex;
    flex-direction: column;
}
.slick-vertical .slick-slide{
	margin-bottom:20px !important;
}
.flex-control-nav .slick-track{
	padding:20px;
}
.flex-control-nav .slick-slide{
	max-width:100%;
	padding:10px;
}
ul.tabs.wc-tabs {
    border-bottom: 1px solid;
	display:flex;
	gap:60px;
	flex-wrap:wrap;
}
.tabs.wc-tabs li {
	background-color: unset !important;
	border: none !important;
	color: #8b8b8b !important;
	padding-inline:0 !important;
}
.tabs.wc-tabs li a{
	color: #8b8b8b !important;
	font-size:18px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li{
	margin-left:0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a{
	color:black !important;
}
.tabs.wc-tabs li::before,
.tabs.wc-tabs li::after{
	content:none !important;
}
.woocommerce-tabs.wc-tabs-wrapper {
    padding-block: 80px;
}

.woocommerce table.shop_attributes{
	max-width: 100% !important;
    border-collapse: collapse;
    border: 0;
    margin-bottom: 0;
}
tr.woocommerce-product-attributes-item.woocommerce-product-attributes-item--weight{
	border-color: #F2F2F2;
	border-style: solid;
    border-width: 0 0 1px 0;
}
.woocommerce table.shop_attributes th{
	padding: 15px 35px 15px 35px;
    color: #101010;
    background: #f8f8f8;
    width: 25%; 
	font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 19px; 
	border: 0;
    border-left-width: 0 !important; 
    text-align: left;
}
.woocommerce table.shop_attributes td{
	padding: 15px 35px 15px 35px;
    background: #fdfdfd !important;
	font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 19px;
	border: 0;
    border-left-width: 0 !important; 
    text-align: left;
}
.woocommerce .star-rating span{
	color: #FEC42D;
}
.single-product div#reviews {
	display: grid;
    grid-gap: 4%;
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
}
#reviews #comments {
    width: 100%; 
}
#review_form_wrapper {
    display: block;
    max-width: 100% !important;
    width: 100%;
    padding: 0;
    margin: 0;
    float: unset;
	width:100%;
}
.comment-notes {
    display: none;
}

.woocommerce-tabs .woocommerce-Tabs-panel h3 {
	margin-top: 30px !important;
}

.woocommerce-tabs .woocommerce-Tabs-panel p,
.woocommerce-tabs .woocommerce-Tabs-panel li {
	color: #000000 !important;
	line-height: 22px;
}

@media   screen and (max-width:820px){
	.custom-wc-title{
		width:100%;
	}
}
@media   screen and (max-width:767px){
	 
	.single-product div#reviews {
		grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
	}
	ul.tabs.wc-tabs{
		padding-bottom:10px !important;
	}
	.related .products .custom-product-card{
		width:100% !important;
	}
}

/* Product Gallery */

.woocommerce-product-gallery__trigger {
	display: none !important;
}

.product-images-column {
    flex: 1;
    min-width: 350px;
}

.product-info-column {
    flex: 1;
    min-width: 350px;
}

.custom-single-product .flex-control-thumbs > .woocommerce-product-gallery__image:first-child {
    display: none;
}

.custom-single-product .mobile-slider-wrapper {
	width: 100%;
    display: flex;
    gap: 20px;
}

/* Product Gallery Wrapper */
.woocommerce-product-gallery {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  float: left;
  width: 48%;
}

/* Thumbnail column */
.woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /*width: 111.5px;*/ /* control thumbnail column width */ 
  width: 135px;
}

.woocommerce-product-gallery .flex-control-thumbs img {
  border: 1px solid #e5e5e5;
/*   border-radius: 4px; */
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.woocommerce-product-gallery .flex-control-thumbs img:hover,
.woocommerce-product-gallery .flex-control-thumbs img.flex-active {
/*   border-color: #ed3237; */
  border: 1px solid #c5c1c1;
  box-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.woocommerce-product-gallery .flex-control-thumbs .slick-slide {
    width: 96% !important;
    margin-bottom: 10px !important;
}


/* Main product image */

.woocommerce-product-gallery__wrapper {
  flex: 1;
}

.woocommerce-product-gallery__wrapper img {
  width: 100%;
  height: auto;
/*   border-radius: 6px; */
  background: #fff;
  border: 1px solid #e5e5e5;
  transition: border-color .2s ease, box-shadow .2s ease;
	object-fit:cover;
	aspect-ratio:1/1.1;
	
}

.woocommerce-product-gallery__wrapper img:hover {
/*   border-color: #ed3237; */
  border: 1px solid #c5c1c1;
  box-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

.elementor-lightbox .elementor-lightbox-image {
    box-shadow: unset !important;
}


/* =======================
   WooCommerce Review Tab
   ======================= */

/* Review tab wrapper */
.woocommerce-Tabs-panel--reviews {
    background: #f9f9f9;
    padding: 30px !important;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-top: 20px;
}

/* Reviews list */
.commentlist li {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    display: flex; 
    align-items: flex-start;
}
.commentlist li .meta{
	margin-bottom:15px !important;
}
.commentlist li:last-child {
    border-bottom: 0;
}

/* Reviewer avatar */
.commentlist li .avatar {
    border-radius: 50%;
    width: 60px !important;
    height: 60px !important;
    flex-shrink: 0;
	position:static !important;
	padding:0 !important;
}

/* Review content */
.commentlist li .comment-text {
    flex: 1;
}

.commentlist li .meta {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 5px;
}

.commentlist li .meta .woocommerce-review__published-date {
    font-weight: 400;
    color: #777;
    font-size: 13px;
    margin-left: 10px;
}
.woocommerce p.stars a { 
    color: #facc29;
}
.comment-form-rating {
    margin-bottom: 20px;
}
.commentlist li .description {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
.required{
	color:#ed3237;
}
#review_form_wrapper {
    margin-top: 30px;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

#review_form input[type="text"],
#review_form input[type="email"],
#review_form textarea,
#review_form select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

#review_form input[type="text"]:focus,
#review_form input[type="email"]:focus,
#review_form textarea:focus,
#review_form select:focus {
    border-color: #ed3237;
    box-shadow: 0 0 5px #ed3237;
    outline: none;
}

 
#review_form input[type="checkbox"],
#review_form input[type="radio"] {
    width: auto;
    margin-right: 10px;
    accent-color: #ed3237;
}

 
#review_form p.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}
.woocommerce .quantity .qty::-webkit-outer-spin-button,
.woocommerce .quantity .qty::-webkit-inner-spin-button{
	-webkit-appearance: none;
  margin: 0;
}
.woocommerce .quantity .qty {
  -moz-appearance: textfield;
	padding:0;
}

/* Submit button */
#review_form #submit {
    background: #53c518;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

#review_form #submit:hover {
    background: #429411;
}
.comment-form-cookies-consent label{
	margin-bottom:0 !important;
}
.comment-form-cookies-consent{
	display:flex;
	margin-bottom:15px !important;
	align-items: center;
}
#review_form #submit{
	float: none;
	font-family: "Poppins", Sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    line-height: 19px !important;
	background-color: #f4b400 !important;
    color: #000000 !important;
	padding: 12px 28px !important;
    border-radius: 30px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

#review_form #submit:hover {
	background: #e09e00 !important;
}

/* Labels */
#review_form label {
    font-weight: 600; 
	display: inline-block;
	margin-bottom:15px;
}
.commentlist{
	padding:0;
}
.commentlist .comment_container{
	display:flex;
}
.comment{
	margin-top:20px !important;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text{
	display: block; 
    padding: 0 !important;
    border: none;
    border-radius: 0;
    overflow: hidden;
	margin-left:20px;
}
.woocommerce .star-rating{
	float: none !important;
    margin: 0 0 5px 0;
    overflow: hidden !important;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 1em;
    width: 5.3em;
    letter-spacing: 0; 
    display: inline-block;
}
.review__published-date, .woocommerce-review__author, .woocommerce-review__verified, .woocommerce-review__dash {
    color: #101010;
	font-size: 18px;
	font-weight: 700;
}
.commentlist li .meta .woocommerce-review__published-date{
	font-size: 14px;
    font-weight: 400; 
}
.comment-text p{
	margin: 0 0 1em;
	 color: #101010;
}
.comment-reply-title{
	display:none;
}

.custom-single-product .custom-product-grid-section {
	padding-top: 60px;
	border-top: 1px solid #000000;
}

.related.products > h2{
	margin-bottom:30px !important;
}
.related .product-tags,
.related  .product-price,
.related  .product-rating,
.related .product-qty,
.related .quantity {
	display:none !important;
}
.related  h2.product-title {
    font-size: 18px;
	text-align: center;
    display: block;
}
.related  li.product .button{
	background-color: #ffcc00 !important;
    font-family: "Poppins";
    font-weight: 500 !important;
    font-size: 15px !important;
    color: #000 !important;
    border-radius: 30px !important;
    padding-inline: 20px !important;
	margin-top:20px;
	float:none !important;
}
.related   img{
	aspect-ratio: 1 / 1.2;
    object-fit: contain;
}
.custom-qty .single_add_to_cart_button,
.single-product .variations_button .single_add_to_cart_button{
	margin-top:15px !important;
	display:block !important;
	min-width:160px;
	margin-inline:0 !important;
}
.related.products .wishlist-quick-view-overlay{
	display:none;
}

.related .custom-product-card .quick-add , .related .custom-product-card .product-variation {
	display: none;
}

.related.products  .title-box {
    width: 100%;
}
.related.products  .quick-add {
    text-align: center;
    margin-top: 40px;
}
.related.products .custom-product-card {
	padding:10px !important;
	box-shadow: none;
}
.related.products  .variations_button{
	text-align:center;
	margin-top:40px;
	display: flex;
    justify-content: center;
}
.product-price .price{
	color:#333 !important;
}
.combo-offer-section form.variations_form.cart {
    margin-bottom: 0 !important;
}
.combo-offer-section table.variations {
    margin-bottom: 10px !important;
}
/* .combo-offer-section .custom-product-card .button {
	position:absolute !important;
} */
.single-product .combo-offer-section.custom-product-grid-section .custom-product-card {
	min-height: 630px;
}

.related li.product .button { 
    margin-top: 50px !important; 
}
/* .single-product .custom-product-card .single_add_to_cart_button,
.single-product .combo-offer-section  .custom-product-card .button:not(.yith-wcqv-button) {
	  display: block !important;
	  width: 150px;
	  background-color: #f4b400 !important;
	  color: #000 !important;
	  font-size: 16px !important;
	  font-weight: 600 !important;
	  padding: 12px !important;
	  border-radius: 30px !important;
	  border: none !important;
	  cursor: pointer !important;
	  transition: all 0.3s ease !important;
	  margin: auto !important;
	  position: absolute ;
	  bottom: 30px !important;
} */
.woocommerce-Tabs-panel h2{
	margin-bottom:20px !important;
}
.single-product .variations th.label{
	width:70px;
}


@media only screen and (max-width:600px) {
	
/* 	 .single-product .combo-offer-section .single_add_to_cart_button, .single-product .combo-offer-section .custom-product-card .button {
		bottom: -40px;
	 } */
	
}

@media only screen and (max-width:767px){
	
	
	.woocommerce div.product .woocommerce-tabs ul.tabs li a{
		padding:0;
	}
	.woocommerce div.product .woocommerce-tabs ul.tabs li{
		margin:0;
	}
	ul.tabs.wc-tabs{
		gap:15px; 
	}
	.woocommerce-Tabs-panel--reviews{
		padding:0 !important;
	}
	
	.woocommerce div.product div.images.woocommerce-product-gallery { 
		flex-direction: column;
	}
	
	.custom-single-product .woocommerce-product-gallery__wrapper {
		display: none;
	}
	
	.custom-single-product .flex-control-thumbs > .woocommerce-product-gallery__image:first-child {
		display: block;
	}
	
	
	.flex-control-thumbs {
		display: block !important; /* Let slick take control */
		width: 100% !important;
		max-width: 100%;
		margin: 0 auto;
	  }

	  /* Force each child to be treated as a slide with fixed width */
	  .flex-control-thumbs > div {
		display: block;
		width: auto !important;
		max-width: 100%;
	  }

	  /* Make images fit */
	  .flex-control-thumbs img {
		width: 90%;
		height: auto;
		display: block;
		border: none !important;
	  }
	
	  .woocommerce-product-gallery .flex-control-thumbs .slick-slide {
		width: unset !important;
		margin-bottom: unset !important;
	  }
	
	
} 

@media only screen and (min-width:821px) and (max-width:1024px) {
	
	.custom-single-product .combo-offer-section.custom-product-grid-section .custom-product-card {
		min-height: 800px !important;
	}
	
	.custom-single-product .custom-variations .single_variation_wrap .woocommerce-variation-add-to-cart .single_add_to_cart_button {
    	bottom: 0px;
	}
	
}

/* .quick-add{
	flex-direction:column; 
} */
.quick-add .add_to_cart_button{
/* 	position:static !important; */
}
.quick-add .added_to_cart {
    margin-left: 0;
    color: #ed3237;
    margin-block: 15px;
    display: block;
}
.custom-product-item .added_to_cart{
	display:none;
}

.product-page-combo .custom-product-card{
	background:none;
	box-shadow:none;
	padding: 15px; 
}
.product_divider {
    border-bottom: 1px solid;
    grid-column: 1 / -1;
	display:none;
}
@media screen and (min-width:1025px){
	.product-page-combo .custom-product-card{
		min-height: 670px;
	}
	.product_divider:nth-child(6):not(.custom-products-grid.columns-4 .product_divider){
		display:block;
	}
	.product-page-combo .custom-products-grid.columns-4 .product_divider:nth-child(3n of .product_divider):not(:last-of-type){
		display:block !important;
	}	
	.combo-offer-section .custom-products-grid.columns-4 .product_divider:nth-child(3n of .product_divider):not(:last-of-type){
		display:none;
	}
	.product-page-combo .custom-products-grid {
		grid-template-columns: repeat(3, 1fr) !important;
	}
	.products_banner .bdt-prime-slider-skin-general .bdt-prime-slider-wrapper{
		width:50% !important;
		max-width:750px;
	}
}
@media screen and (min-width:768px) and (max-width:1024px){
/* 	.product_divider:nth-child(2n of .product_divider):not(:last-of-type) {
	  display: block;
	}
	.custom-product-grid-section.product-page-combo .custom-products-grid ,
	.products_page_products .custom-products-grid-2{ 
        grid-template-columns: repeat(2, 1fr) !important; 
	} */	
	
}
@media screen and (min-width:768px) and (max-width:820px){
/* 	.product_divider:nth-child(2n of .product_divider):not(:last-of-type) {
	  display: block;
	}  */
	
	.product_divider:nth-child(2n of .product_divider):not(:last-of-type) {
	  display: none;
	}  
}
@media screen and (min-width:821px) and (max-width:1024px){
/* 	.product_divider:nth-child(3n of .product_divider):not(:last-of-type) {
	  display: block;
	}   */
	
	.product_divider:nth-child(3n of .product_divider):not(:last-of-type) {
	  display: none;
	}
}

@media screen and (min-width:821px) and (max-width:1024px){
	.custom-product-grid-section.product-page-combo  .custom-product-card{
		min-height:750px !important;
	}
	.products_page_products .custom-products-grid-2 .custom-product-card{
		min-height:750px !important;
	}
	
}
@media screen and (max-width:767px){
	.product_divider{
		display: none;
	}
}
.product-page-combo .custom-product-card .product-price{
	width:100%;
}
/*  FAQ*/
.product_faq {
    margin-bottom: 15px;
}
.product_faq_heading{
	background: none;
    border: none;
    color: #000;
    cursor: pointer;
    display: block;
    font-size: 18px;
	width: 100%;
    text-align: left;
    font-weight: 600;
	padding-bottom:10px;
	position:relative;
	padding-left:0;
}
.product_faq_heading:focus-visible{
	border:1px solid #FFCC29;
	border-radius:5px;
}
.product_faq_content{
	display:none;
	line-height: 22px;
	margin-bottom:10px;
}
.product_faq {
    margin-bottom: 30px;
    padding-bottom: 10px;
	border-bottom: 1px solid;
}
.product_faq_heading::after{
	position:absolute;
	content:'';
	width:10px;
	height:10px;
	border-top:3px solid;
	border-left:3px solid; 
	transform: rotate(225deg);
	right:20px;
	top:0;
	transition:all 300ms ease;
}
.product_faq.active .product_faq_heading::after{
	transform:rotate(45deg);
}
/*  */
ul.tabs.wc-tabs{
	padding-left:0 !important;
	font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #000000;
}
.quick-add .added_to_cart{
	display:none;
}
.wpcf7{
	font-family: "Poppins", Sans-serif;
}
.wpcf7-not-valid-tip{
	margin-top:10px;
}
.woocommerce a.added_to_cart{
	display:none;
}
.yith-quick-view-content{
	font-family: "Poppins", Sans-serif;
}
.yith-quick-view-content.woocommerce div.summary .price{
	margin-bottom:20px !important;
}
.woocommerce div.product form.cart .button{
	position:static;
	display: block;
    width: 150px;
    background-color: #f4b400;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    padding: 12px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
}
.yith-quick-view-content.woocommerce div.product form.cart { 
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
	margin-bottom: 20px;
}
.yith-quick-view-content.woocommerce div.product form.cart::before{
	content:none !important;
}
.yith-quick-view .yith-quick-view-content div.images{
	padding:20px;
}
.yith-quick-view{
	z-index:10000;
}
.yith-quick-view-content .product_meta a{
	color: #ed3237;
}

.product_packname {
    color: #a4a4a4;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid lightgrey;
    padding: 10px 20px;
    border-radius: 10px;
}
.product_pack_names {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.tabs.wc-tabs li a{
	transition:all 300ms ease;
}
.tabs.wc-tabs::before,
.tabs.wc-tabs::after{
	content:none !important;
}
@media screen and (min-width:768px){
	.flex-control-thumbs:has(> .woocommerce-product-gallery__image:only-child) {
	  display: none;
	} 
}
@media screen and (max-width:1024px){
	.tabs.wc-tabs{
		overflow-x:auto !important;
		flex-wrap:nowrap !important;
	}
	.tabs.wc-tabs > li{
		flex: 0 0 auto;
		word-wrap:nowrap;
	}	
}

@media only screen and (min-width:931px) and (max-width:1024px){
	.single-product .combo-offer-section.custom-product-grid-section .custom-product-card {
		min-height: 770px !important;
	}
}
@media only screen and (min-width:821px) and (max-width:930px){
	.single-product .combo-offer-section.custom-product-grid-section .custom-product-card {
		min-height: 720px !important;
	}
}
@media only screen and (min-width:769px) and (max-width:820px){
	.single-product .combo-offer-section.custom-product-grid-section .custom-product-card {
		min-height: 660px !important;
	}
}
@media only screen and (min-width:601px) and (max-width:768px){
	.single-product .combo-offer-section.custom-product-grid-section .custom-product-card {
		min-height: 640px !important;
	}
}
@media only screen and (min-width: 541px) and (max-width: 600px) {
	.single-product .combo-offer-section.custom-product-grid-section .custom-product-card {
		min-height: 870px !important;
	}
}
@media only screen and (min-width: 481px) and (max-width: 540px) {
	.single-product .combo-offer-section.custom-product-grid-section .custom-product-card {
		min-height: 805px !important;
	}
}
@media only screen and (min-width: 431px) and (max-width: 480px) {
	.single-product .combo-offer-section.custom-product-grid-section .custom-product-card {
		min-height: 765px !important;
	}
}
@media only screen and (min-width: 391px) and (max-width: 430px) {
	.single-product .combo-offer-section.custom-product-grid-section .custom-product-card {
        min-height: 710px !important;
    }
}
@media only screen and (min-width: 376px) and (max-width: 390px) {
	.single-product .combo-offer-section.custom-product-grid-section .custom-product-card {
        min-height: 670px !important;
    }
}
@media only screen and (min-width: 361px) and (max-width: 375px) {
	.single-product .combo-offer-section.custom-product-grid-section .custom-product-card {
        min-height: 650px !important;
    }
}
@media only screen and (min-width: 341px) and (max-width: 360px) {
	.single-product .combo-offer-section.custom-product-grid-section .custom-product-card {
        min-height: 635px !important;
    }
}
@media only screen and (max-width: 340px) {
	.single-product .combo-offer-section.custom-product-grid-section .custom-product-card {
        min-height: 620px !important;
    }
}


@media screen and (max-width:767px){
	.custom-product-tags{
		flex-direction:row;
		flex-wrap:wrap;
	}
	.custom-product-tags li{
		width:auto;
	}
}
.woocommerce-product-gallery__wrapper{
	max-width: 500px;
}

.eael-woo-product-carousel-container .eael-woo-product-carousel a.button.add_to_cart_button.added{
	display:inline-block !important;
}

.black_banner .header_default_state{
	background-color:transparent;
}
.header_default_state,
.header_active_state,
.black_banner .header_active_state {
	background-color:#000;
}

/* Cart page */

/* ------------------- CART PAGE STYLING ------------------- */


.wc-block-components-sidebar-layout {
	padding: 0px 30px !important;
	padding-top: 70px !important;
}

.wc-block-components-sidebar-layout .wc-block-components-main {
    padding-right: unset !important;
    width: 60% !important;
}

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

.wc-block-components-sidebar-layout .wc-block-cart-items, .wp-block-woocommerce-cart-order-summary-block {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.wc-block-components-product-metadata {
	color: #000000 !important;
    font-family: "Poppins", Sans-serif;
    font-weight: 400 !important;
    font-size: 13px !important;
    line-height: 19px !important;
}

/* Table Head */
/* .wc-block-components-sidebar-layout .wc-block-cart-items thead {
    font-weight: 600;
    text-transform: uppercase;
} */
.wc-block-components-sidebar-layout .wc-block-cart-items th {
    padding: 8px 20px 8px 20px !important;
    text-align: left;
    border-bottom: 0px solid #eee;
}

.wc-block-components-sidebar-layout .wc-block-cart-items th span, .wc-block-cart__totals-title {
	font-family: "Lato", Sans-serif !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    line-height: 34px !important;
    color: #000 !important;
	margin-block: 20px !important;
}
.wc-block-components-sidebar-layout .wc-block-cart-items th span{
	display:inline-block;
	margin:10px 0 10px !important;
}

.wc-block-cart__totals-title {
	padding-left: 20px !important;
}

.wc-block-components-totals-wrapper {
	padding-left: 20px !important;
	padding-right: 20px !important;
}

/* Table Rows */
.wc-block-components-sidebar-layout .wc-block-cart-items td {
    padding: 20px 15px !important;
    vertical-align: middle !important;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: #333;
}

/* Product Image */
.wc-block-components-sidebar-layout .wc-block-cart-items td.product-thumbnail img {
    max-width: 70px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Product Name */

.wc-block-cart-item__product a {
    color: #000000 !important;
    font-family: "Poppins", Sans-serif;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 22px !important;
    margin-top: 0px !important;
    padding-top: 0px !important;
}

.wc-block-components-product-price span, .wc-block-components-totals-item__value .wc-block-formatted-money-amount, .wc-block-components-totals-item__value {
	color: #292a67 !important;
    font-family: "Poppins", Sans-serif;
    font-weight: 700 !important;
    font-size: 14px !important;
    line-height: 24px !important;
}

.wc-block-components-totals-item__label, .wc-block-components-button__text {
	color: #000000 !important;
    font-family: "Poppins", Sans-serif;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 20px !important;
}


.wc-block-components-sidebar-layout .wc-block-cart-items td.product-name a:hover {
    color: #d4a047; /* Highlight color */
}

/* Quantity Styling */
.wc-block-components-quantity-selector__input {
	color: #000000 !important;
	font-family: "Poppins", Sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    line-height: 22px !important;
}

/* Remove item link */
.wc-block-cart-item__remove-link {
    color: #ff4d4d !important;
	font-family: "Poppins", Sans-serif !important;
    font-weight: bold;
    transition: all 0.3s ease;
}
.wp-block-woocommerce-cart a.remove:hover {
    background: #ff4d4d;
    color: #fff !important;
    border-radius: 50%;
    padding: 5px 8px;
}

/* Cart Totals Box */
.cart_totals {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-top: 30px;
}
.cart_totals h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}
.cart_totals table th,
.cart_totals table td {
    padding: 12px 10px;
    font-size: 15px;
}
.cart_totals .wc-proceed-to-checkout a {
    display: block;
    text-align: center;
    padding: 14px;
    background: #d4a047;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease;
}
.cart_totals .wc-proceed-to-checkout a:hover {
    background: #b5832d;
}

/* ------------------- RESPONSIVE ------------------- */
@media (max-width: 1024px) {
	
    .wp-block-woocommerce-cart table.shop_table th,
    .wp-block-woocommerce-cart table.shop_table td {
        font-size: 14px;
        padding: 12px;
    }
    .cart_totals {
        margin-top: 20px;
        padding: 20px;
    }
	
	.wc-block-components-sidebar-layout {
		flex-direction: column;
		margin: 0 auto 16px !important;
	}
	
	.wc-block-components-sidebar-layout .wc-block-components-main {
		width: 100% !important;
	}
	
	.wc-block-components-sidebar {
		padding-left: unset !important;
		width: 100% !important;
	}
	
}

@media (max-width: 768px) {
    .wp-block-woocommerce-cart table.shop_table thead {
        display: none; /* Hide table head for mobile */
    }
    .wp-block-woocommerce-cart table.shop_table tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 15px;
    }
    .wp-block-woocommerce-cart table.shop_table td {
        display: flex;
        justify-content: space-between;
        padding: 10px 5px;
        border: none;
    }
    .wp-block-woocommerce-cart table.shop_table td::before {
        content: attr(data-title);
        font-weight: 600;
        color: #555;
    }
    .cart_totals {
        width: 100%;
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    .wp-block-woocommerce-cart table.shop_table td.product-thumbnail img {
        max-width: 50px;
    }
    .cart_totals {
        padding: 15px;
    }
    .cart_totals h2 {
        font-size: 18px;
    }
}

.wp-block-product-new, .is-style-dots, .wp-block-woocommerce-empty-cart-block h2:nth-of-type(2) {
	display: none !important;
}

.wp-block-woocommerce-empty-cart-block {
	padding-top: 50px;
    padding-bottom: 50px;
	min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-block-woocommerce-empty-cart-block h2 {
	color: #292A67;
	font-family: "Lato", Sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}
.page-id-14 .wp-block-woocommerce-cart{
	padding-top:200px;
	max-width: 1500px;
    margin: auto;
}
.wc-block-cart__submit-button{
	font-family: "Poppins", Sans-serif ;
    font-size: 13px ;
    font-weight: 500 ;
    text-transform: none ;
    line-height: 19px ;
    background-color: #f4b400 ;
    color: #000000 ;
    padding: 10px 36px 10px 36px ;
    border-radius: 30px ;
    border: none ;
    cursor: pointer ;
    transition: all 0.3s ease !important;
}
.wc-block-cart__submit-button:hover{
	background: #e09e00 !important;
}
.wp-block-woocommerce-cart{
	font-family: "Poppins", Sans-serif ;
	min-height:50vh;
}
@media only screen and (max-width: 767px) {
    .is-small table.wc-block-cart-items .wc-block-cart-items__header, .is-mobile table.wc-block-cart-items .wc-block-cart-items__header {
        display: block !important;
    }
	.wc-block-cart-items__header-product, .wc-block-cart-items__header-total {
        display: none !important;
    }
	.page-id-14 .wp-block-woocommerce-cart{
		padding-top:250px;
	}
	.wc-block-cart__main{
		overflow-x:auto;
	}
}
/* Cart page styles End */

.yith-wcwl-feedback-messages-container{
	font-family: "Poppins", Sans-serif ;
}



/* Check Out page */

/* === Global Checkout Layout === */
.wc-block-checkout {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px auto !important;
  max-width: 1200px;
  font-family: "Lato", Sans-serif;
}

/* === Left (Form) and Right (Order Summary) Layout === */
.wc-block-checkout__main {
  flex: 2;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.wc-block-checkout__sidebar {
  flex: 1;
  background: #fafafa;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  position: sticky;
  top: 20px;
  height: fit-content;
}

.wp-block-woocommerce-checkout .wc-block-components-sidebar {
	background-color: #ffffff !important;
    padding-left: 20px !important;
}

/* === Headings === */
.wc-block-components-title, .wc-block-components-checkout-order-summary__title-text {
    color: #000 !important;
    font-family: "Lato", Sans-serif;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

.wc-block-components-checkout-step__description {
	color: #000000 !important;
    font-family: "Poppins", Sans-serif !important;
	font-weight: 300 !important;
    font-size: 14px !important;
    line-height: 22px !important;
	margin: 0 0 16px !important;
  	margin-bottom: 20px !important;
}

.wc-block-components-form .wc-block-components-text-input label, 
.wc-block-components-text-input label, 
.wc-blocks-components-select .wc-blocks-components-select__label, 
.wc-block-components-textarea {
	color: #000000 !important;
    font-family: "Poppins", Sans-serif !important;
	font-weight: 300 !important;
    font-size: 14px !important;
    line-height: 22px !important;
}

.wc-block-components-textarea {
	border: 1px solid #292A67 !important;
}

/* === Form Inputs === */
.wc-block-components-text-input input,
.wc-blocks-components-select select, .wc-block-components-form .wc-block-components-text-input input[type=email], .wc-block-components-form .wc-block-components-text-input input[type=number], .wc-block-components-form .wc-block-components-text-input input[type=password], .wc-block-components-form .wc-block-components-text-input input[type=tel], .wc-block-components-form .wc-block-components-text-input input[type=text], .wc-block-components-form .wc-block-components-text-input input[type=url], .wc-block-components-text-input input[type=email], .wc-block-components-text-input input[type=number], .wc-block-components-text-input input[type=password], .wc-block-components-text-input input[type=tel], .wc-block-components-text-input input[type=text], .wc-block-components-text-input input[type=url] {
  border: 1px solid #292A67 !important;
  color: #000000 !important;
  font-family: "Poppins", Sans-serif !important;
  font-weight: 300 !important;
  font-size: 14px !important;
  line-height: 22px !important;
  transition: all 0.3s ease;
  background: #fff;
}

.wc-block-components-validation-error {
  font-family: "Poppins", Sans-serif !important;
  font-weight: 500 !important;
}

.wc-block-components-address-form__address_2-toggle, .wc-block-components-checkbox__label, .wc-block-components-notice-banner__content, .wc-block-components-checkout-return-to-cart-button {
  color: #000000 !important;
  font-family: "Poppins", Sans-serif !important;
  font-weight: 300 !important;
  font-size: 14px !important;
  line-height: 22px !important;
}

.wc-block-components-radio-control__label-group span {
  color: #000000 !important;
  font-family: "Poppins", Sans-serif !important;
  font-weight: 300 !important;
}

.wc-block-components-button, .wc-block-components-checkout-place-order-button {
    background-color: #ECB45B !important;
    font-family: "Poppins", Sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 22px !important;
    fill: #000000;
    color: #000000;
    border-style: solid !important;
    border-width: 1px 1px 1px 1px !important;
    border-color: #ECB45B !important;
    border-radius: 5px 5px 5px 5px !important;
	transition: all .3s !important;
}

.wc-block-components-button .wc-block-components-checkout-place-order-button__text, 
.wc-block-components-checkout-place-order-button .wc-block-components-checkout-place-order-button__text  {
	font-weight: 600 !important;
	transition: all .3s !important;
}

.wc-block-components-button:hover, 
.wc-block-components-checkout-place-order-button:hover {
    background: #e09e00 !important;
}

.wc-block-components-button:hover .wc-block-components-checkout-place-order-button__text, 
.wc-block-components-checkout-place-order-button:hover .wc-block-components-checkout-place-order-button__text {
/*     color: #ECB45B !important; */
}

.wc-block-cart__submit-container a {
	text-decoration: none !important;
}

.wc-block-cart__submit-container .wc-block-components-button__text {
	font-weight: 600 !important;
	transition: all .3s !important;
}

.wc-block-cart__submit-container .wc-block-components-button:hover .wc-block-components-button__text, 
.wc-block-cart__submit-container .wc-block-components-checkout-place-order-button:hover .wc-block-components-button__text {
/* 	color: #ECB45B !important;  */
}

.wc-block-components-text-input input:focus,
.wc-blocks-components-select select:focus {
  border-color: #ecb45b;
  outline: none;
  box-shadow: 0 0 0 2px rgba(236,180,91,0.3);
}

/* Labels */
.wc-block-components-text-input label,
.wc-blocks-components-select__label {
  font-size: 14px;
  color: #333;
  margin-top: 6px;
  display: block;
}

/* === Buttons === */
.wc-block-components-button,
.wc-block-components-checkout-place-order-button {
  	font-family: "Poppins", Sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    line-height: 19px !important;
    background-color: #f4b400 !important;
    color: #000000 !important;
    padding: 10px 36px 10px 36px !important;
    border-radius: 30px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

/* Return to cart */
.wc-block-components-checkout-return-to-cart-button {
  color: #1f1f1f;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

/* === Sidebar (Order Summary) === */
.wc-block-components-checkout-order-summary__title {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
}

.wc-block-components-order-summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.wc-block-components-order-summary-item__description h3 {
  color: #000000 !important;
  font-family: "Poppins", Sans-serif !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 22px !important;
  margin: 0;
}

.wc-block-components-order-summary-item__individual-price {
  font-size: 14px;
  color: #666;
}

.wc-block-components-order-summary-item__total-price {
  font-weight: 600;
  font-size: 15px;
}

/* Totals */
.wc-block-components-totals-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 15px;
}
.wc-block-components-totals-footer-item {
  font-weight: 700;
  font-size: 16px;
}

/* === Checkboxes & Radios === */
.wc-block-components-checkbox__input,
.wc-block-components-radio-control__input {
  accent-color: #ecb45b;
}

.wc-block-components-checkbox__label,
.wc-block-components-radio-control__label {
  font-size: 14px;
  color: #444;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .wc-block-checkout {
    flex-direction: column;
  }
  .wc-block-checkout__sidebar {
/*     order: -1; */
    width: 100%;
  }
  .wc-block-checkout__sidebar.is-sticky {
    position: relative !important;
  }
  .wc-block-checkout {
    gap: unset !important;
  }
}

.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
    padding-right: 25px !important;
}

.wc-block-checkout {
    margin-top: 100px !important;
    padding-top: 30px !important;
}
#wc-guest-checkout-notice{
	margin-top:10px !important;
}
.wc-block-components-checkout-order-summary__title-text{
	margin-left:16px !important;
}

@media (max-width:767px){
	.wc-block-checkout__main {
		box-shadow: unset !important;
	}
	.wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block {
        display: none !important;
    }
	.wc-block-components-checkout-place-order-button{
		width:100% !important;
	}
	.wc-block-components-checkout-step__title{
		margin-bottom:10px !important;
	}
}
/* Checkout page style end */

/* Wishlist page */

.yith_wcwl_wishlist_footer, .wishlist-title-container .show-title-form  {
	display: none !important;
} 


/* ------------------- WISHLIST PAGE STYLING ------------------- */

/* Wishlist Container */
.yith-wcwl-form {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px 30px;
    padding-bottom: 60px;
	min-height: 450px;
}

/* Wishlist Table */
.wishlist_table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.wishlist-title h2 {
	font-family: "Fraunces", Sans-serif !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    line-height: 34px !important;
    color: #292A67 !important;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
/* 	color: #000000 !important; */
    font-family: "Poppins", Sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 22px !important;
	margin-bottom:15px !important;
}

/* Table Head */
.wishlist_table thead th {
    padding: 8px 20px;
    text-align: left;
    border-bottom: 0px solid #eee; 
    font-size: 20px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    line-height: 34px !important;
    color: #000 !important;
}

/* Table Rows */
.wishlist_table td {
    padding: 20px 15px !important;
    vertical-align: middle !important;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: #333;
}

/* Product Thumbnail */
.wishlist_table .product-thumbnail img {
    max-width: 70px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Product Name */
.wishlist_table .product-name a {
    color: #000000 !important;
    font-family: "Poppins", Sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 22px !important;
    text-decoration: none;
}
.wishlist_table .product-name a:hover {
    color: #d4a047; /* same hover as Cart */
}

/* Product Price */
.wishlist_table .product-price {
    color: #292a67 !important;
    font-family: "Poppins", Sans-serif !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    line-height: 24px !important;
}
.wishlist_table{
	 font-family: "Poppins", Sans-serif !important;
}
.wishlist_table .product-price .nobr {
    color: #292a67 !important; 
    font-size: 20px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    line-height: 34px !important;
}

/* Quantity (if shown in wishlist) */
.wishlist_table .quantity input {
    color: #000000 !important;
    font-family: "Poppins", Sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    line-height: 22px !important;
    text-align: center;
}

/* Remove link */
.wishlist_table .product-remove a.remove_from_wishlist {
    color: #ff4d4d !important;
    font-family: "Poppins", Sans-serif !important;
    font-weight: bold;
    transition: all 0.3s ease;
}
.wishlist_table .product-remove a.remove_from_wishlist:hover {
    background: #ff4d4d;
    color: #fff !important;
    border-radius: 50%;
    padding: 7px 8px;
	padding-top: 3px;
    padding-bottom: 9px;
}


.wishlist_table .product-stock-status span.wishlist-in-stock {
    color: #297e29;
	font-family: "Poppins", Sans-serif !important;
    font-size: 14px !important;
	line-height: 20px !important;
}


.wishlist_table .product-add-to-cart a, .woocommerce-message a {
	font-family: "Poppins", Sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    line-height: 19px !important;
    background-color: #f4b400 !important;
    color: #000000 !important;
    padding: 10px 36px 10px 36px !important;
    border-radius: 30px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.wishlist_table .product-add-to-cart a:hover, .woocommerce-message a:hover {
	background: #e09e00 !important;
}


/* Share box (if enabled) */
.yith_wcwl_wishlist_footer {
    margin-top: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 20px;
}
.yith-wcwl-share-title {
    font-size: 15px;
    font-weight: 600;
    color: #1d2a57;
    margin-bottom: 12px;
}

/* .wishlist-items-wrapper .product-add-to-cart .product_type_variable {
	display: none !important;
} */

.woocommerce-error, .woocommerce-info, .woocommerce-message {
	border-top: none !important;
    border-radius: 7px;
	border: 1px solid #292A67 !important;
}



/* ------------------- RESPONSIVE ------------------- */
 @media (max-width: 768px) {
    .wishlist_table thead {
        display: none;
    }
    .wishlist_table,
    .wishlist_table tbody,
    .wishlist_table tr,
    .wishlist_table td {
        display: block;
        width: 100%;
    }
    .wishlist_table tr {
        margin-bottom: 20px;
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 15px;
        background: #fff;
    }
    .wishlist_table td {
        display: flex;
        justify-content: space-between;
        padding: 10px 5px;
        border: none;
    }
    .wishlist_table td::before {
        content: attr(data-title);
        font-weight: 600;
        color: #555;
    }
    .wishlist_table .product-thumbnail img {
        max-width: 300px;
		width:100%;
    }
}




/* ------------------- TABLET RESPONSIVE ------------------- */
@media (max-width: 1024px) and (min-width: 768px) {
    .wishlist_table.responsive.mobile li {
        flex-direction: row;
        align-items: flex-start;
    }
    .wishlist_table .item-wrapper {
        flex: 1 1 70%;
    }
    .wishlist_table .additional-info-wrapper {
        flex: 1 1 25%;
    }
}

/* ------------------- MOBILE FALLBACK ------------------- */
@media (max-width: 767px) {
    .wishlist_table.responsive.mobile li {
        flex-direction: column;
        align-items: flex-start;
    }
    .wishlist_table .additional-info-wrapper {
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }
    .wishlist_table .product-thumbnail {
/*         flex: 0 0 60px; */
		max-width:unset !important;
    }
	
	.wishlist_table {
		padding-left: 10px;
    	padding-right: 10px;
	}
	
	.wishlist_table li {
		padding-top: 30px;
		border-bottom: 1px solid #eee;
		min-height: 540px;
	}
	
	.wishlist_table li:last-child {
		border-bottom: none;
	}
	
	.wishlist_table .product-thumbnail img {
        max-width: 150px;
    }
	
	.wishlist_table .item-details {
		width: 100% !important;
	}
	
	.wishlist_table .item-details-table {
		width: 98%;
	}
	
	.wishlist_table.mobile li .item-details table.item-details-table td.label {
		text-align: center !important;
		font-weight: 700;
		width: 100% !important;
	}
	
	.wishlist_table.mobile li table.additional-info td.label {
		text-align: left;
		font-weight: 700;
		width: 100% !important;
	}
	
	.wishlist_table.mobile li .item-details table.item-details-table td.value {
		text-align: center !important;
	}
	
	.wishlist_table td {
        display: flex;
        justify-content: center;
    }
	
	.wishlist_table .additional-info-wrapper {
        align-items: center;
        text-align: left;
        width: 100%;
		display: flex;
        flex-direction: row;
		justify-content: space-between;
		margin-top: 0px !important;
    }
	
	.additional-info {
		width: 89%;
	}
	
	.wishlist_table .additional-info-wrapper .product-add-to-cart {
		position: absolute;
		top: 125px;
		right: 30px;
	}
	
	.wishlist_table .product-add-to-cart a {
		display: unset !important;
	}
	
	.wishlist_table .product-remove {
		margin-top: 0px;
		position: absolute;
    	top: 130px;
		left: 20px;
	}
	
	.wishlist_table .additional-info-wrapper {
        position: relative;
    }
	
	.wishlist_table .item-wrapper {
		display: flex !important;
    	flex-direction: column !important;
		margin-bottom: 0px !important;
		text-align:center;
	}
	
	.wishlist_table .item-wrapper .product-name h3 {
		margin-bottom: 10px;
	}
	.wishlist_table .product-add-to-cart a{
		position:static !important
	}
	.yith-wcwl-form {
		margin-top: 280px !important;
	}
}

/* ------------------- WISHLIST TABLET STYLING ------------------- */
@media (min-width:767px) and (max-width:1024px){
	

	/* Ensure UL behaves like table */
	.wishlist_table.responsive.mobile li {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: end;
		padding: 15px;
		margin-bottom: 20px;
		border: 1px solid #eee;
		border-radius: 8px;
		background: #fff;
		box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	}
	.wishlist_table .product-add-to-cart a{
		position:static !important;
	}
	.additional-info-wrapper{
		align-items:center;
	}
	/* Product image + details on the left */
	.wishlist_table .item-wrapper {
		display: flex;
		flex: 1 1 50%;
		align-items: flex-start;
		gap: 15px;
	}

	/* Thumbnail */
	.wishlist_table .product-thumbnail {
		flex: 0 0 80px; 
	}
	.wishlist_table .product-thumbnail img {
		border-radius: 6px;
		box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	}

	/* Details */
/* 	.wishlist_table .item-details {
		flex: 1;
	} */
	.wishlist_table .product-name h3 a {
		color: #000;
		font-family: "Poppins", Sans-serif;
		font-weight: 600;
		font-size: 16px;
		line-height: 22px;
		text-decoration: none;
	}
	.wishlist_table .product-name h3 a:hover {
		color: #d4a047;
	}
	.wishlist_table .item-details-table td {
		font-size: 14px;
		color: #444;
		padding: 3px 5px;
	}

	/* Price text */
	.wishlist_table .item-details-table .value {
		color: #292a67;
		font-weight: 700;
		font-size: 16px;
	}

	/* Stock + actions aligned to the right */
	.wishlist_table .additional-info-wrapper {
		flex: 1 1 30%;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		justify-content: space-between;
		gap: 10px;
		text-align: right;
	}

	/* Stock label */
	.wishlist_table .additional-info td.value {
		color: green;
		font-weight: 600;
	}

	/* Add to cart button */
	.wishlist_table .product-add-to-cart .add_to_cart {
		display: inline-block;
		padding: 8px 16px;
		background: #d4a047;
		color: #fff !important;
		font-size: 14px;
		font-weight: 600;
		border-radius: 6px;
		transition: background 0.3s ease;
		text-align: center;
	}
	.wishlist_table .product-add-to-cart .add_to_cart:hover {
		background: #b5832d;
	}

	/* Remove icon */
	.wishlist_table .product-remove a.remove_from_wishlist {
		color: #ff4d4d;
		font-size: 16px;
		transition: 0.3s;
	}
	.wishlist_table .product-remove a.remove_from_wishlist:hover {
		color: #fff;
		background: #ff4d4d;
		border-radius: 50%;
		padding: 5px 7px;
	}
	
	
	
	.wishlist_table.mobile li .item-wrapper {
		display: flex;
		width: 100%;
	}

	.wishlist_table.mobile li .item-wrapper .product-thumbnail {
		max-width: 100%;
	}

	.wishlist_table.mobile {
		padding-left: 0px;
	}
	
	
/* 	.wishlist_table.mobile li .item-wrapper .item-details {
		display: inline-block;
		width: 100%;
		vertical-align: top;
		padding-left: 0px;
	} */
	
	
	.item-details-table {
		width: 40%;
	}
	
	.wishlist_table.mobile li .item-details table.item-details-table td.label {
		text-align: center !important;
		font-weight: 700;
		width: 100% !important;
	}
	
	.wishlist_table.mobile li table.additional-info td.label {
		text-align: left;
		font-weight: 700;
		width: 100% !important;
	}
	
	.wishlist_table.mobile li .item-details table.item-details-table td.value {
		text-align: center !important;
	}
	
	.wishlist_table td {
        display: flex;
        justify-content: center;
    }
	
	.wishlist_table .additional-info-wrapper {
        align-items: center;
        text-align: left;
        width: 48%;
		display: flex;
        flex-direction: row;
    }
	
	.additional-info {
		width: 40%;
	}
	
	.wishlist_table .product-add-to-cart a {
		display: block !important;
	}
	
	.wishlist_table .product-remove {
		margin-top: -8px;
	}
	
	.wishlist_table .additional-info-wrapper {
        padding-right: 20px;
    }
	
	.wishlist_table .item-wrapper {
		margin-bottom: 0px !important;
	}
	
	.wishlist_table .item-wrapper .product-name h3 {
		margin-bottom: 10px;
	}
	
}
@media (max-width:1024px){
	.wishlist_table td {
		padding: unset !important;
	}
	
	.wishlist_table .item-details {
		margin-top: 25px;
	}
	
	.wishlist_table .additional-info-wrapper {
		margin-top: 60px;
	}
	
	.wishlist_table tr {
		display: block;
        margin-bottom: 20px;
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 15px;
        background: #fff;
    }
	
	.wishlist_table .label {
		color: #000000 !important;
		font-family: "Poppins", Sans-serif !important;
		font-weight: 600 !important;
		font-size: 16px !important;
		line-height: 22px !important;
	}
	
	.wishlist_table .woocommerce-Price-amount {
		color: #292a67;
		font-family: "Poppins", Sans-serif !important;
		font-weight: 700 !important;
		font-size: 18px !important;
		line-height: 24px !important;
		margin-top: 10px;
	}
	
	.wishlist_table .value span:nth-of-type(2) {
		margin-top : 15px;
		margin-left: 5px;
        margin-right: 5px;
	}
	
	.wishlist_table .value .wishlist-in-stock {
		font-family: "Poppins", Sans-serif !important;
		font-weight: 600 !important;
		font-size: 14px !important;
		line-height: 20px !important;
		margin-top: 10px;
	}
	
}
.wishlist-items-wrapper .button.yith-wcqv-button,
.wishlist-items-wrapper .remove_from_wishlist.button{
	display:none !important;
}
.wishlist-items-wrapper .add_to_cart{
	position:static !important;
}
.wishlist_table .product-remove a.remove_from_wishlist:hover{
	padding:0 !important;
}
.yith-wcwl-form{
	margin-top:210px;
}
.wishlist_table .product-name a:nth-of-type(2){
	display:none !important;
}
@media only screen and (min-width: 601px) and (max-width: 768px) {
    .wishlist_table .item-wrapper {
        flex: unset !important;
        width: 45% !important;
        flex-direction: column;
        gap: 30px !important;
    }
}
.wishlist_table tr td.product-thumbnail{
	display:block !important;
}
.wishlist_table .button.yith-wcqv-button{
	display:none !important;
}
@media screen (max-width:767px){
	.woocommerce table.shop_table.wishlist_table tr td{
		 
	}
}
/* ------------------- WISHLIST TABLET STYLING END------------------- */


/* ===========================
   WooCommerce Account page Styling
   =========================== */


body.page-id-16 .woocommerce {
	margin-top: 220px !important;
	padding-left:15px;
	padding-right:15px;
}


.woocommerce-error {
	padding: 10px !important;
 	flex-direction: row !important;
}

#customer_login { 
    margin-bottom: 80px !important;
    max-width: 1200px;
    margin: auto;
	padding: 0 20px;
}

.woocommerce-form-login, .woocommerce-form-register {
  max-width: 800px;
  padding: 40px 25px !important;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-family: "Poppins", Sans-serif !important;
  min-height: 300px;
}

/* Form Fields */
.woocommerce-form-login .woocommerce-form-row, .woocommerce-form-register .woocommerce-form-row {
  margin-bottom: 20px;
}

.woocommerce-form-login label, .woocommerce-form-register label,.woocommerce-ResetPassword  label {
  display: block;
  font-family: "Poppins", Sans-serif !important;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  color: #333;
}

.woocommerce-form-login input.input-text, .woocommerce-form-register input.input-text, .woocommerce-ResetPassword input {
  	width: 100%;
    padding: 12px 14px !important;
    font-family: "Poppins", Sans-serif !important;
    font-size: 15px;
    border: 1px solid #ccc !important;
    border-radius: 8px !important;
    transition: border-color 0.3s  ease, box-shadow 0.3s ease;
    /* outline: none; */ 
}
.lost_reset_password .woocommerce-Input{
	margin-bottom:20px !important;
}
.woocommerce-form-login input.input-text:focus, .woocommerce-form-register input.input-text:focus,.woocommerce-ResetPassword input:focus {
  border-color: #0073aa;
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.2);
}

/* Password field eye button */
.password-input {
  position: relative;
}

/* .woocommerce-login-register-page  */
.password-input .show-password-input {
   transform: translateY(-80%) !important;
}

.password-input .show-password-input:hover {
  opacity: 0.8;
}

/* Remember Me + Login Button Row */
.woocommerce-form-login .form-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.woocommerce-form-login .woocommerce-form__label, .woocommerce-form-register .woocommerce-form__label {
  font-family: "Poppins", Sans-serif !important;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.woocommerce-form-login input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Login Button */
#customer_login .woocommerce-button ,
.woocommerce-MyAccount-content .woocommerce-info a,
.woocommerce-address-fields button, 
.woocommerce-EditAccountForm button:not(.show-password-input){
  	font-family: "Poppins", Sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    line-height: 19px !important;
    background-color: #f4b400 !important;
    color: #000000 !important;
    padding: 10px 36px 10px 36px !important;
    border-radius: 30px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s  ease !important;
}

#customer_login .woocommerce-button:hover,
.woocommerce-MyAccount-content .woocommerce-info a:hover, 
.woocommerce-address-fields button:hover, 
.woocommerce-EditAccountForm button:hover:not(.show-password-input){
  	background: #e09e00 !important;
}

/* Lost Password Link */
.woocommerce-form-login .woocommerce-LostPassword {
  margin-top: 15px;
  text-align: center;
}

.woocommerce-form-login .woocommerce-LostPassword a, .woocommerce-privacy-policy-text a {
  color: #ED3237;
  font-family: "Poppins", Sans-serif !important;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.woocommerce-form-login .woocommerce-LostPassword a:hover, .woocommerce-privacy-policy-text a:hover { 
  text-decoration: underline;
}

.woocommerce form .password-input, .woocommerce-page form .password-input {
    width: 100% !important;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
    margin-left: 1em;
	margin-top: 1em;
}

.woocommerce form .form-row .input-text:focus, .woocommerce form .form-row select:focus {
    border: 1px solid #000000 !important;
}
.woocommerce{
	font-family: "Poppins", Sans-serif !important;
}
.woocommerce-form p {
    font-family: "Poppins", Sans-serif !important;
    font-size: 14px;
	line-height: 20px;
	margin-bottom: 20px !important;
}

#customer_login h2 {
	font-family: "Lato", Sans-serif !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    line-height: 34px !important;
    color: #292A67 !important;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme{
	display:inline-flex !important;
	width:100%;
}
.woocommerce-form-register__submit ,
#customer_login .woocommerce-button{
	display:block;
	margin-inline:auto;
}
/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {

	.woocommerce-form-login .form-row {
		flex-direction: column;
		align-items: flex-start; 
	}

	.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
		margin-left: 0em;
	}	
	body.page-id-16 .woocommerce {
		margin-top: 300px !important;
	}
	.woocommerce-error::before{
		position:static !important;
		transform:translatey(0) !important;
	}
	
}


/* =======================
   WooCommerce My Account Page Styling
======================= */

/* Container */

body.page-id-16 .woocommerce {
   min-height: unset;
}

body.page-id-16 .woocommerce-notices-wrapper {
   padding: 30px;
   padding-bottom: 0px;
   align-self: flex-start;
}

/* Sidebar Navigation */
.woocommerce-MyAccount-navigation {
  flex: 0 0 250px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
  margin-top: 0px;
  margin-bottom: 80px;
  width: 20% !important;
  margin-left: 10%;
/*   margin-top: 170px; */
}

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

.woocommerce-MyAccount-navigation li {
  margin: 0;
}

.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 14px 20px;
  font-size: 15px;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation a:hover {
  background: #f5faff;
  color: #0073aa;
  border-left-color: #0073aa;
}

/* Content Area */
.woocommerce-MyAccount-content {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: 0px;
  margin-bottom: 80px;
  width: 54% !important;
  margin-right: 10%;
/*   margin-top: 170px; */
  min-height: 365px;
}

/* Notices */
.woocommerce-info {
  background: #eaf6ff;
  color: #004a6b;
  padding: 12px 15px;
  border-left: 4px solid #0073aa;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

/* Links inside content */
.woocommerce-MyAccount-content a {
  color: #0073aa;
  font-family: "Poppins", Sans-serif !important;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.woocommerce-MyAccount-content a:hover {
  color: #005f8a;
}


.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
    display: none;
}

.woocommerce-MyAccount-content p, .woocommerce-MyAccount-navigation-link a, .select2-container .select2-results__option, .woocommerce-EditAccountForm fieldset legend {
	color: #5a5a5a;
    font-family: "Poppins", Sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 26px !important;
}

.woocommerce-Address-title h2, .woocommerce-Address address, .woocommerce-MyAccount-content h2 {
	color: #5a5a5a;
	font-family: "Poppins", Sans-serif !important;
}

.woocommerce-MyAccount-content input:focus, .woocommerce-MyAccount-content select:focus, .woocommerce-MyAccount-content input:focus-visible, .woocommerce-MyAccount-content select:focus-visible {
  	outline: none !important;
}

.woocommerce-EditAccountForm .woocommerce-Button {
	margin-top: 10px !important;
}

.woocommerce-EditAccountForm fieldset {
	border: 1px solid rgba(32, 7, 7, 0.8);
	border-radius: 5px;
}



/* =======================
   Responsive Styling
======================= */

/* Tablet */
@media (max-width: 992px) {
 
  .woocommerce-MyAccount-navigation {
    flex: 1;
    display: flex;
    overflow-x: auto;
    border-radius: 10px;
    padding: 0; 
    margin-bottom: 40px;
  }
	
  .woocommerce-MyAccount-content {
	margin-top: 0px;
    margin-bottom: 80px;
  }
	
  .woocommerce-MyAccount-navigation ul {
    display: flex;
    width: 100%;
	padding-left: 15px;
    padding-right: 15px;
  }
  .woocommerce-MyAccount-navigation li {
    flex: 1 0 auto;
    text-align: center;
  }
  .woocommerce-MyAccount-navigation a {
    padding: 12px;
    border-left: none;
    border-bottom: 3px solid transparent;
  }
  .woocommerce-MyAccount-navigation li.is-active a {
    border-bottom-color: #0073aa;
    background: transparent;
  }
}

/* Mobile */

@media (max-width: 390px) {
	
    .woocommerce-address-fields__field-wrapper .form-row-first, .woocommerce-address-fields__field-wrapper .form-row-last, .woocommerce-EditAccountForm .form-row-first, .woocommerce-EditAccountForm .form-row-last {
		width: 98% !important;
		float: unset !important;
	}
	
}


@media only screen and (min-width: 391px) and (max-width: 600px) {
	
	
	.woocommerce-address-fields__field-wrapper .form-row-first, .woocommerce-address-fields__field-wrapper .form-row-last, .woocommerce-EditAccountForm .form-row-first, .woocommerce-EditAccountForm .form-row-last {
		width: 99% !important;
		float: unset !important;
	}
	
	
}

@media (max-width: 600px) {
	
	
	.woocommerce-MyAccount-navigation {
		width: 90% !important;
	}
	
	.woocommerce-MyAccount-content {
		width: 90% !important;
	    padding: 20px;
	}
	  
	.woocommerce-MyAccount-navigation a {
		font-size: 14px;
		padding: 10px 8px;
	}
	
	.woocommerce-account .addresses .title .edit {
		float: none;
	}
	
	.woocommerce-Address-title, .woocommerce-Address-title h2 {
		margin-bottom: 10px;
	}
	
	
}


@media only screen and (min-width: 601px) and (max-width: 1024px) {
	
	
	.woocommerce-MyAccount-navigation {
		width: 95% !important;
	}
	
	.woocommerce-MyAccount-content {
        width: 95% !important;
		min-height: 315px;
    }
	
	
}


@media (max-width: 1024px) {
	
	
	.woocommerce-MyAccount-navigation, .woocommerce-MyAccount-content {
		float: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
	}
	
	
}



/* My Account - Orders */
 


/* My Account - Addresses */

.woocommerce-Addresses {
	display: flex;
    flex-direction: column;
	row-gap: 30px;
}

.woocommerce-Address {
	width: 100% !important;
}


/* Password Reset page */

body.page-id-16 .woocommerce-message {
/* 	margin-top: 150px !important; */
    margin-bottom: 30px !important;
    max-width: 800px;
    margin: auto;
}
.woocommerce-error a{
	color:#ED3237;
}
body.page-id-16 .woocommerce-message + p {
	max-width: 800px;
    margin: auto !important;
    margin-bottom: 50px !important;
	color: #5a5a5a;
    font-family: "Poppins", Sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 26px !important;
}

.woocommerce-notices-wrapper:empty{
	display:none;
}
body.page-id-16:not(.woocommerce-login-register-page) .woocommerce-notices-wrapper{
	padding: 0 !important;
}
body.page-id-16.logged-in .woocommerce form .form-row .input-text,
body.page-id-16.logged-in  .select2-container{
	margin-bottom:15px !important;
}
body.page-id-16.logged-in .woocommerce-error{
	flex-direction:column;
	align-items:start !important;
}
@media (min-width:768px){
	body.page-id-16.logged-in {
	}
}
/* Account page styles end */
form.woocommerce-ResetPassword.lost_reset_password {
    max-width: 1200px;
    margin: 50px auto 100px;
    padding: 0 20px;
}
form.woocommerce-ResetPassword.lost_reset_password  .woocommerce-Button.button{
	font-family: "Poppins", Sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    line-height: 19px !important;
    background-color: #f4b400 !important;
    color: #000000 !important;
    padding: 10px 36px 10px 36px !important;
    border-radius: 30px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s  ease !important;
}
form.woocommerce-ResetPassword.lost_reset_password  .woocommerce-Button.button:hover{
	background: #e09e00 !important;
}


/* Order Comfirmed page */

.woocommerce-order-received .thank-you-message {
  text-align: center;
  margin-bottom: 30px;
}

.woocommerce-order-received .woocommerce-notice--success {
  font-size: 22px;
  color: #28a745;
}

.woocommerce-order-received .order-summary {
  margin-bottom: 25px;
}

.woocommerce-order-received .order-summary h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.woocommerce-order-received .order-summary ul {
  list-style: none;
  padding: 0;
}

.woocommerce-order-received .order-summary ul li {
  margin-bottom: 8px;
}

.woocommerce-order-received .order-details {
  margin-bottom: 30px;
}

.woocommerce-order-received table.order_details {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce-order-received table.order_details th,
.woocommerce-order-received table.order_details td {
  border: 1px solid #ddd;
  padding: 10px;
}

.woocommerce-order-received table.order_details thead th {
  background-color: #f7f7f7;
}

.woocommerce-order-received table.order_details tfoot th {
  font-weight: bold;
}

.woocommerce-order-received .addresses {
/*   display: flex;
  flex-wrap: wrap;
  gap: 30px; */
	
  display: block;
}
.woocommerce-order-received .addresses::before{
	content:none;
}

.woocommerce-order-received .woocommerce-column--billing-address,
.woocommerce-order-received .woocommerce-column--shipping-address  {
  flex: 1;
  min-width: 300px;
/*   clear:both; */
}
.woocommerce-order-received .woocommerce-column--billing-address address,
.woocommerce-order-received .woocommerce-column--shipping-address address {
    min-height: 150px;
    display: flex; 
    flex-direction: column;
    justify-content: center;
	line-height: 1.4em;
}

.woocommerce .addresses h2 {
  font-size: 18px;
  margin-bottom: 8px !important;
}

.woocommerce-order-received .customer-notes {
  margin-top: 40px;
  font-style: italic;
  color: #555;
}

body.woocommerce-order-received .woocommerce-order {
  max-width: 1000px;
  margin: 250px auto 100px;
  padding: 30px;
  background-color: #ffffff;
  border: 1px solid #e1e1e1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-family: "Plus Jakarta Sans", Sans-serif !important;
  color: #333;
}
body.woocommerce-order-received .woocommerce{
	padding-inline:20px;
}
.woocommerce-order .woocommerce-notice{
	margin-bottom:20px !important;
}
.woocommerce-thankyou-order-details.order_details{
	padding:0;
	display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.woocommerce-thankyou-order-details.order_details::before{
	content:unset!important;
}
.woocommerce-order-received .woocommerce-order-details__title {
    margin-bottom: 20px !important;
	margin-top: 5px;
}
body.woocommerce-order-received .woocommerce a{
	color:#0073aa;
	text-decoration:none;
}
 
.woocommerce-order-details .woocommerce-order-details__title{
	font-size: 18px;
  	margin-bottom: 8px !important;
}
.woocommerce-customer-details--email{
	padding:1.5em !important;
}
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before{
	line-height: 1.6 !important;
}
@media screen and (max-width:767px){
	body.woocommerce-order-received .woocommerce-order{
		margin-top:330px !important;
	}
}
/* Order confirmed styles End */

#search-field{
	-webkit-appearance: searchfield;
	appearance: searchfield;
}
#search-field::-webkit-search-cancel-button {
	-webkit-appearance: none;  
	height: 14px;
	width: 14px;
	cursor: pointer;
	background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4L12 12M12 4L4 12' stroke='%23888' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center center;
	background-size: 14px 14px;
}
@media (max-width:767px){
	.yith-wcqv-button,
	.yith-wcwl-add-to-wishlist-button{
		opacity:1 !important;
		visibility:visible !important;
		transform:translatey(0) !important;
	}
	.our-products-new-section .wishlist-quick-view-overlay, 
	.wishlist-quick-view-overlay{
		top:20px !important;
		right:20px !important;
	}
}
#yith-quick-view-modal{
	z-index:1500 !important;
	display: flex;
	justify-content: center;
}

#yith-quick-view-modal .yith-wcqv-wrapper {
	top: 12%;
    height: 80%;
}

#yith-quick-view-modal #yith-quick-view-content, 
#yith-quick-view-modal #yith-quick-view-content .product, 
#yith-quick-view-modal .yith-wcqv-wrapper .yith-quick-view-content.woocommerce div.product .product {
    height: 100% !important;
}

#yith-quick-view-modal .yith-wcqv-wrapper .single_add_to_cart_button {
	position: static !important;
    padding: 12px;
}

.flex-control-thumbs .slick-next::before,
.flex-control-thumbs .slick-prev::before{
	color:#000 !important;
}
.flex-control-thumbs .slick-prev {
    left: 34%;
    top: -25px;
    rotate: 85deg;
}
.flex-control-thumbs  .slick-next {
	right: 34%;
    top: 103%;
    rotate: 89deg;
    transform: none;
}
.flex-control-thumbs{
	overflow-y:hidden;
	max-height:540px;
}
.flex-control-thumbs.slick-initialized{
	overflow-y:visible;
	max-height: 600px;
}
.flex-control-thumbs .slick-track{
	padding-bottom:20px;
}
.woocommerce-product-gallery .flex-control-thumbs img{
	aspect-ratio: 1 / 1.1;
	object-fit:cover;
}
.woocommerce span.onsale{
	aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.woocommerce-message{
	text-align:start !important;
	flex-direction: row !important;
}
.woocommerce-product-gallery__image img.zoomImg{
	display:none !important;
}

@media  (min-width:768px){
	.combo-offer-section .wishlist-quick-view-overlay{
		right:30px;
		top:30px;
	}
}

@media  (min-width:1025px){
	.woocommerce-product-gallery__wrapper img{
		height:100%;
		display:block;
		object-fit:contain;
	}
	.woocommerce-product-gallery__wrapper *{
		height:100%;
	}
	 
}



/* Orders page */

body:not(.logged-in).woocommerce-order-received .woocommerce {
	margin-top: 230px !important;
	padding-bottom: 50px;
	display: flex;
    flex-direction: column;
    align-items: center;
	gap: 20px;
}

.woocommerce .woocommerce-customer-details, .woocommerce .woocommerce-order-details, .woocommerce .woocommerce-order-downloads {
    margin-top: 2em;
}


@media only screen and (min-width: 821px) and (max-width: 1024px) {
	
	body:not(.logged-in).woocommerce-order-received .woocommerce {
		margin-top: 270px !important;
	}
	
}


@media only screen and (max-width: 768px) {
	
	
	.woocommerce-column--shipping-address {
		margin-top: 30px;
	}
	
	body:not(.logged-in).woocommerce-page .woocommerce-form-login, body:not(.logged-in).woocommerce-page .woocommerce-form-register {
	  	width: auto;
		min-width: 100%;
	}
	
}


@media only screen and (max-width: 600px) {
	
	
	body:not(.logged-in).woocommerce-order-received .woocommerce {
		margin-top: 300px !important;
	}
	
	.woocommerce-order-received .woocommerce-column--billing-address, 
	.woocommerce-order-received .woocommerce-column--shipping-address {
		min-width: auto !important;
		flex: unset !important;
	}
	
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
	.custom-header-menu-2 .elementskit-navbar-nav > li > a,
	#ekit-megamenu-header-menu-1 .menu-item > a{
		padding: 0 10px !important;
	}
/* 	.header-warpper{
		gap:0;
	} */
	.elementor-1628 .elementor-element.elementor-element-dfe687e img{
		width:345px;
	}
}

@media only screen and (min-width: 1300px) and (max-width: 1400px) {
	.custom-header-menu-2 .elementskit-navbar-nav > li > a,
	#ekit-megamenu-header-menu-1 .menu-item > a{
		padding: 0 13px !important;
	}
	.header-warpper{
		gap:0;
	}
	
}

@media only screen and (min-width: 1400px) and (max-width: 1460px) {
	.custom-header-menu-2 .elementskit-navbar-nav > li > a,
	#ekit-megamenu-header-menu-1 .menu-item > a{
		padding: 0 16px !important;
	} 
}
.menu-item .mPS2id-highlight{
	color: #ED3237 !important;
	font-weight:500 !important;
}


@media screen and (max-width:767px){
	.yith-quick-view-content .custom-qty .single_add_to_cart_button, 
	.yith-quick-view-content  .variations_button .single_add_to_cart_button{
		margin-top:0 !important;
	}
	.yith-quick-view-content.woocommerce div.product form.cart{
		flex-direction:column;
	}
	.woocommerce-account .woocommerce-info .button{
		margin-top:10px;
	}
}





