:root {
/*   --primary-color: #F86E7B !important; */
	--primary-color: #FF5263 !important;
  --secondary-color:#60D6F0 !important;
	--primary-hover: #ff5a71;
	--text-dark: #333;
	--text-muted: #6c757d;
	--border-color:#ededed;
}
html,body{
	overflow-x: hidden !important;
}
hr {
    background: #ededed;
}
ul{margin: 0 !important;}
/* Global Styles */
a:hover{
	color: var(--primary-color) !important;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #f8f9fa;
  color: #333;
}
h1, h2, h3, h4, h5, h6{
	font-weight: 400 !important
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #F86E7B !important;
    --bs-btn-border-color: #F86E7B !important;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #dc3545 !important;
    --bs-btn-hover-border-color: #dc3545;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #ff5a71;
    --bs-btn-active-border-color: #ff5a71;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #ff5a71;
    --bs-btn-disabled-border-color: #ff5a71;
}

/* Header */
header {
  background-color: var(--primary-color) !important;
}
/*header {
    position: fixed;
    width: 100vw;
    z-index: 11;
    top: 0;
}*/
.logo {
    background-color: transparent !important;
    padding: 2px !important;
    width: 200px !important;
    border-radius: 5px;
    display: inline-block;
}
.aws-container .aws-show-clear .aws-search-field{
	min-width: 230px;
}
.mobile-navbar a:hover, .mobile-navbar a.active {
    color: #fff !important;
    background-color: var(--primary-color) !important;
}
.nav-link {
  color: #fff;
  font-weight: 400 !important;
  margin: 0 10px;
}
.nav-link:hover {
  color: #fff;
}
.search-input {
  width: 100%;
  border-radius: 20px;
  border: none;
  padding: 5px 15px;
}
.search-btn {
  background-color: #fff !important;
  border: none;
  border-radius: 0 20px 20px 0;
  font-size: 12px;
}
.search-btn i {
  background-color: var(--primary-color) !important;
  padding: 5px 7.5px;
  border-radius: 50px;
  color: #fff !important;
}
.icon-btn {
  background-color: transparent;
  font-size: 20px;
  border: none !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
}

/* Mobile Navbar */
.mobile-navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #fff;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
}
.mobile-navbar a {
  color: #6c757d;
  padding: 8px 0;
  display: block;
  text-align: center;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.mobile-navbar a:hover,
.mobile-navbar a.active {
  color: var(--primary-color);
  background-color: #f8f9fa;
}
.mobile-navbar .nav-icon {
  font-size: 1.25rem;
}
.mobile-navbar .nav-text {
  font-size: 0.75rem;
}
.navbar-collapse {
  background-color: var(--primary-color);
  padding: 15px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9999;
}
.navbar-nav .nav-link {
  color: #fff !important;
  padding: 10px 0;
}
.navbar-nav .nav-link:hover {
  background-color: #fff;
  color: var(--primary-color);
}
.mobileNav .header_search_bar {
  margin-top: 20px;
}

/* Product Page */
.single_product_container {
  max-width: 1400px;
  margin: 20px auto;
  padding: 0 15px;
}
.breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #6c757d;
}
.breadcrumb-item a {
  color: var(--primary-color);
}
.single_product_section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.single_product_images {
  flex: 1;
  min-width: 280px;
}
.single_product_main_image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding-top: 20px;
}
.single_product_main_image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.single_product_main_image:hover img {
  transform: scale(1.05);
}
.single_product_thumbnail_images {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 30px;
}
.single_product_thumbnail_images img {
  width: 60px;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s;
}
.single_product_thumbnail_images img:hover,
.single_product_thumbnail_images img.active {
  border-color: var(--primary-color);
}
.single_product_details {
  flex: 1;
  min-width: 280px;
  padding: 15px;
}
.single_product_details h1 {
  font-size: 1.8rem;
  margin: 0 0 12px;
  color: #000;
}
.single_product_rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.single_product_rating .stars {
  color: var(--primary-color);
}
.single_product_price {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 8px;
}
.single_product_original_price {
  text-decoration: line-through;
  color: #6c757d;
  margin-left: 8px;
  font-size: 1rem;
}
.single_product_discount {
  color: var(--primary-color);
  font-weight: bold;
  margin-left: 8px;
  font-size: 0.9rem;
}
.single_product_sustainability,
.single_product_viewers,
.single_product_delivery_info,
.single_product_store_info {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 15px;
}
.single_product_color_options,
.single_product_size_options {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.single_product_color {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s;
}
.single_product_color.selected {
  border-color: var(--primary-color);
}
.single_product_size {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
}
.single_product_size.selected {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}
.single_product_quantity {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}
.single_product_quantity button,
.single_product_quantity input {
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.9rem;
}
.single_product_quantity button {
  width: 32px;
  height: 32px;
  background-color: #fff;
  cursor: pointer;
}
.single_product_quantity input {
  width: 45px;
  text-align: center;
  padding: 4px;
}
.single_product_buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}
.single_product_btn {
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  flex: 1;
  text-align: center;
  transition: background-color 0.2s;
}
.single_product_add_to_cart {
  background-color: var(--primary-color);
  color: #fff;
}
.single_product_add_to_cart:hover {
  background-color: #c82333;
}
.single_product_buy_now {
  background-color: #000;
  color: #fff;
}
.single_product_buy_now:hover {
  background-color: #333;
}
.single_product_tabs {
  display: flex;
  border-bottom: 1px solid #ccc;
  margin-top: 15px;
}
.single_product_tab {
  padding: 8px 15px;
  cursor: pointer;
  font-size: 0.9rem;
  border-bottom: 2px solid transparent;
}
.single_product_tab.active {
  border-bottom: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: bold;
}
.single_product_tab_content {
  padding: 15px 0;
  display: none;
}
.single_product_tab_content.active {
  display: block;
}

/* Related Products */
.single_product_related_products {
  margin-top: 30px;
}
.single_product_related_products h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #000;
}
.single_product_card {
  transition: transform 0.3s;
}
.single_product_card:hover {
  transform: translateY(-5px);
}
.single_product_card img {
  height: 200px;
  object-fit: cover;
}
.product-card {
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.product-card img {
  height: 350px;
	padding:0 !important
 border-radius:0px !important;
}

.sidebar-item.active {
    border-left: none;
    border-right-color: var(--primary-color) !important;
	background-color: rgb(248 110 123 / 13%) !important;
}

/* Buttons */
.add-to-cart-btn {
	transform: translatex(-10px) !important;
	margin-right:20px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.add-to-cart-btn:hover {
  background-color: #c82333;
	color: #fff;
}
.add-to-cart-btn i {
  font-size: 1.25rem;
}

/* Color options */
.color-option {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin: 0 8px 8px 0;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}
.color-option.selected {
  transform: scale(1.2);
  box-shadow: 0 0 0 3px #f8f9fa, 0 0 0 5px #007bff;
  border-color: #f8f9fa;
}
.color-black { background-color: #000; }
.color-red { background-color: #dc3545; }
.color-blue { background-color: #0d6efd; }
.color-white { background-color: #fff; border: 1px solid #ddd; }
.color-lightblue { background-color: #17a2b8; }

/* Footer */
.footer-icon a {
  transition: color 0.2s;
}
.footer-icon a:hover {
  color: var(--primary-color) !important;
}

.sizeDetails span {
    border: 1px solid #ededed;
    padding: 5px 14px;
    background: #fff;
/*     width: 50px; */
    text-align: center;
    border-radius: 24px;
}
.sizeDetails span:hover, .sizeDetails .sizeActive {
	border: 1px solid var(--primary-color);
	background: #ededed;
}

/*Filter desktop sidebar*/
 .filter-sidebar {
            border-radius: 16px;
            background-color: #fff;
            position: sticky;
            top: 20px;
        }

        .filter-card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .filter-header {
            color: var(--text-dark);
            font-weight: 600 !important;
            font-size: 1.5rem;
        }

        .filter-subheader {
            color: var(--text-dark);
            font-weight: 500 !important;
            margin-bottom: 0.75rem;
        }

        .filter-divider {
            margin: 1.5rem 0;
            background-color: var(--border-color);
            opacity: 0.7;
        }

        .filter-item {
            transition: all 0.2s ease;
            background-color: transparent;
        }

        .filter-item:hover {
            background-color: #f8f9fa;
        }

        .form-check-input {
            border-color: #adb5bd;
            width: 18px;
            height: 18px;
        }

        .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .form-check-label {
            color: var(--text-dark);
            font-size: 0.95rem;
        }

        .btn-apply {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            font-weight: 500;
            border-radius: 8px;
            padding: 0.6rem 1.5rem;
            transition: all 0.3s ease;
        }

        .btn-apply:hover {
            background-color: var(--primary-hover);
            border-color: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255, 107, 129, 0.2);
			color:#fff !important;
        }

        .form-select {
            border-radius: 8px;
            padding: 0.6rem 1rem;
            font-size: 0.95rem;
            border-color: #dee2e6;
            color: var(--text-dark);
            background-color: #fff;
        }

        .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(255, 107, 129, 0.25);
        }
.form-check-input:focus {
    border-color: var(--primary-color) !important;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(248, 110, 123, 0.5) !important;
}
/*Filter desktop sidebar*/


/*Custom radio/checkbox button*/

/* Hide the default radio button */
.catSingle input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  margin: 0;
}
.catSingle input[type="checkbox"] {
	-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin: 0;
}

/* Style for unchecked radio button */
.catSingle input[type="radio"]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--primary-color);
  transition: all 0.2s ease-in-out;
}
.catSingle input[type="checkbox"]::before {
	border-radius: 2px;
}
input[type="checkbox"]:checked[type=checkbox] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
	background-image: var(--bs-form-check-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Style for checked radio button */
.catSingle input[type="radio"]:checked {
  border-color: var(--primary-color);
}
input[type="checkbox"]:checked{
	background-color:var(--primary-color);
}
.catSingle input[type="radio"]:checked::before, input[type="checkbox"]:checked::before {
  width: 12px;
  height: 12px;
}

/* Add focus style for accessibility */
.catSingle input[type="radio"]:focus, input[type="checkbox"]:focus  {
  box-shadow: 0 0 0 .25rem rgba(248, 110, 123, 0.5) !important /* Matching primary color with transparency */
}

/* Style for the labels */
.catSingle label {
  cursor: pointer;
  font-size: 14px;
  color: #555;
}

/* Style for the selected label */
.catSingle input[type="radio"]:checked + label,
.catSingle label[for]:has(+ input[type="radio"]:checked) {
  color: var(--primary-color);
  font-weight: 500;
}
.catSingle input[type="checkbox"]:checked + label,
.catSingle label[for]:has(+ input[type="checkbox"]:checked) {
  color: var(--primary-color);
  font-weight: 500;
}


/*filter Modal*/
.csproductModal.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0,50px);
}
.csproductModal .modal-dialog {
  position: fixed !important;
  bottom: 60px !important;
  left: 0% !important;
  right: 0% !important;
  margin: 0 !important;
  max-width: 100vw !important;
} 
.csproductModal.modal.show .modal-dialog {
    transform: none;
}
.csproductModal .modal-content {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.csproductModal .modal-title {
    font-size: 1.2rem !important;
    margin: 0;
}
.csproductModal .modal-body{
	max-height: 50vh;
    overflow: auto;
}
.catSingle{
	margin-bottom:5px;
}
.productFilter {
    border: 1px solid #d8d8d8;
    border-right: 0;
    position: sticky;
    top: 10px;
    z-index: 10;
    background: #fff;
    box-shadow: 0 0 5px #ededed;
}
@media screen and (min-width: 769px) {
	.productFilter {
		display:none
	}
}
.productFilter .col{
	margin-top:0
}
.productFilter > .col .productFilterlink{
	position:relative;
	padding-left: 0;
}
.productFilter > .col .productFilterlink:after{
	position:absolute;
	content:"";
	width:1px;
	top:0;
	right:-2px;
	height:100%;
	border-right:1px solid #d8d8d8;
}
.productFilter > .col::nth-last-of-type(1) .productFilterlink:after{
	border:none
}
.productFilterlink {
	font-size:13px;
	font-weight:600;
}
.productFilterlink >div{
	display:flex;
	justify-content: center;
	gap:3px;
}
.productFilterlink{
	padding: 5px;
	display:block;
	/*border-top:1px solid #ededed;
	border-bottom:1px solid #ededed;*/
}

/*Scroll top*/
.scrollTop {
    display: flex;
    font-size: 18px;
    color: #fff;
    position: fixed;
    border-radius: 50%;
    width: 40px;
	height: 40px;
    justify-content: center;
    cursor: pointer;
    border: 3px solid #fff;
    right: 3%;
    bottom: 100px;
    background-color: #666;
    padding: 6px;
    opacity: 0;
	z-index:10;
    transition: all 0.4s ease-in-out 0s;
}
#scrollToTop {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background-color: var(--primary-color);
	color: white;
	border: none;
	bottom:65px;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	text-align: center;
	font-size: 20px;
	cursor: pointer;
	display: none; /* Hidden by default */
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	transition: background-color 0.3s;
}

#scrollToTop:hover {
	background-color: #000;
}

footer{
	box-shadow: 0 0 10px #d8d8d8;
    padding-top: 20px;
    background: #ededed !important;
}

/* Responsive */
@media (max-width: 768px) {
	.mobile-navbar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 11;
		width:100vw;
        background-color: #ffffff;
        box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
    }
  .single_product_section {
    flex-direction: column;
  }
  .single_product_main_image {
    height: 250px;
  }
  .single_product_details h1,
  .single_product_price {
    font-size: 1.4rem;
  }
  .single_product_thumbnail_images img {
    width: 50px;
    height: 65px;
  }
  .single_product_buttons {
    flex-direction: column;
  }
  .single_product_card img {
    height: 150px;
  }
}

@media (max-width: 576px) {
	h1, h2, h3, h4, h5, h6{
		font-weight:400 !important;
	}
  .add-to-cart-btn {
    width: 32px;
    height: 32px;
  }
  .add-to-cart-btn i {
    font-size: 1rem;
  }
  
  .single_product_main_image {
    height: 200px;
  }
  .single_product_thumbnail_images img {
    width: 40px;
    height: 50px;
  }
  .single_product_details h1,
  .single_product_price {
    font-size: 1.2rem;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
}
.top-trending-products-card-body, .all_products-card-body{padding-top: 20px;}

/*
 * New Code
 */

.col-1 {
	width: auto !important;
}

.col-2 {
	width: auto !important;
}

.img-rounded {
	border-radius: 50% !important;
}

.category-card {
	background-color: #ffffff;
	padding: 10px;
}

.category-scroll-container {
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* IE and Edge */
}

.category-scroll-container::-webkit-scrollbar {
	display: none;
	/* Chrome, Safari, Opera */
}

.category-items-wrapper {
	display: flex;
	gap: 1rem;
	padding: 0.5rem 0;
	min-width: max-content;
}

.category-item {
	flex: 0 0 auto;
	width: 90px;
	/* Fixed width for consistency */
	min-width: 90px;
	margin-bottom: 12px;
}

/* Category card styles to match the image */
.category-card {
	transition: transform 0.2s ease;
}

.category-card:hover {
	transform: translateY(-2px);
}

.category-circle {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: #f8f9fa;
	border: 2px solid #e9ecef;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 0.5rem;
	overflow: hidden;
	transition: border-color 0.2s ease;
}

.category-circle:hover {
	border-color: #007bff;
}

.category-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.card-title {
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 0;
	line-height: 1.2;
	color: #333;
}


/* Responsive adjustments */
@media (min-width: 768px) {
	.category-items-wrapper {
		justify-content: center;
		flex-wrap: wrap;
		gap: 1.5rem;
	}

	.category-item {
		width: 140px;
		min-width: 140px;
	}

	.category-circle {
		width: 100px;
		height: 100px;
	}

	.card-title {
		font-size: 1rem;
	}
}

@media (min-width: 992px) {
	.category-items-wrapper {
		gap: 2rem;
	}

	.category-item {
		width: 160px;
		min-width: 160px;
	}

	.category-circle {
		width: 120px;
		height: 120px;
	}
}

/* Optional: Add scroll indicators for mobile */
@media (max-width: 767px) {
	/*.category-scroll-container::after {
		content: '';
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		width: 20px;
		background: linear-gradient(to left, rgba(255, 255, 255, 0.8), transparent);
		pointer-events: none;
	}*/

	.category-scroll-container {
		position: relative;
	}
}


 .product-card {
	 border: 1px solid #e0e0e0;
	 transition: all 0.3s ease;
	 background: white;
	 border-radius: 12px;
	 overflow: hidden;
	 box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	 display: flex;
	 flex-direction: column;
}

.product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
	border-color: #007bff;
}

.product-image-container {
	width: 100%;
	aspect-ratio: 1;
	overflow: hidden;
	background: #f8f9fa;
}

.product-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.product-card:hover .product-image {
	transform: scale(1.05);
}

.product-info {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.product-title {
	font-size: 14px;
	line-height: 1.4;
	color: #333;
	min-height: 2.8em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-title:hover {
	color: #007bff !important;
}

.current-price {
	font-size: 16px;
	font-weight: 600;
	color: #333;
}

.original-price {
	font-size: 13px;
}

.discount-badge {
	font-size: 12px;
	font-weight: 500;
}

.rating-badge {
	font-size: 12px;
	font-weight: 600;
	min-width: 45px;
	justify-content: center;
}

.review-count {
	font-size: 12px;
	white-space: nowrap;
}

.delivery-text {
	font-size: 12px;
	font-weight: 500;
}

.wishlist-btn {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.wishlist-btn:hover {
	background: white !important;
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Tablet styles */
@media (max-width: 991.98px) {
	.product-title {
		font-size: 13px;
		min-height: 2.6em;
	}

	.current-price {
		font-size: 15px;
	}

	.original-price {
		font-size: 12px;
	}

	.discount-badge {
		font-size: 11px;
	}

	.rating-badge {
		font-size: 11px;
	}

	.review-count {
		font-size: 11px;
	}
}

/* Mobile styles */
@media (max-width: 767.98px) {
	.product-grid {
		width: 100%;
		max-width: 100%;
	}

	.container-fluid.product_listing {
		padding-left: 8px;
		padding-right: 8px;
	}

	.product-card {
		border-radius: 8px;
	}

	.product-image-container {
		aspect-ratio: 1.1;
	}

	.product-info {
		padding: 8px !important;
	}

	.product-title {
		font-size: 13px;
		line-height: 1.3;
		min-height: 2.4em;
	}

	.current-price {
		font-size: 14px;
	}

	.original-price {
		font-size: 11px;
	}

	.discount-badge {
		font-size: 10px;
	}

	.rating-badge {
		font-size: 10px;
		min-width: 40px;
		padding: 3px 6px !important;
	}

	.review-count {
		font-size: 10px;
	}


	.wishlist-btn {
		width: 28px;
		height: 28px;
		font-size: 12px;
	}

	/* Hide filter sidebar on mobile */
	.filter-sidebar {
		display: none !important;
	}

	.col-md-9.product-grid {
		flex: 0 0 100%;
		max-width: 100%;
	}

	/* Adjust grid spacing */
	.row {
		--bs-gutter-x: 8px;
		--bs-gutter-y: 8px;
	}
}

/* Extra small devices */
@media (max-width: 575.98px) {
	.container-fluid.product_listing {
		padding-left: 4px;
		padding-right: 4px;
	}

	.product-info {
		padding: 6px !important;
	}

	.product-title {
		font-size: 13px;
		min-height: 2.2em;
	}

	.current-price {
		font-size: 13px;
	}

	.original-price {
		font-size: 10px;
	}

	.discount-badge {
		font-size: 9px;
	}

	.rating-badge {
		font-size: 9px;
		min-width: 35px;
	}

	.review-count {
		font-size: 9px;
	}

	.wishlist-btn {
		width: 26px;
		height: 26px;
		font-size: 11px;
	}

	.row {
		--bs-gutter-x: 6px;
		--bs-gutter-y: 6px;
	}
}

/* Prevent horizontal scroll */
body {
	overflow-x: hidden;
}

/* Loading state */
.product-card.loading {
	opacity: 0.7;
	pointer-events: none;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {

	.product-card,
	.product-image,
	.wishlist-btn {
		transition: none;
	}
}

/* Focus styles for accessibility */
.product-card:focus-within {
	outline: 2px solid #007bff;
	outline-offset: 2px;
}

.wishlist-btn:focus {
	outline: 2px solid #007bff;
	outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
	.product-card {
		border: 2px solid #000;
	}

	.product-title {
		color: #000;
	}

	.current-price {
		color: #000;
	}
}

/*sbcss*/

.aws-container .aws-show-clear .aws-search-field {
	padding-right: 0;
	padding: 0 12px;
}
.aws-container .aws-search-form, .aws-search-result{
	border-radius: 5px !important;
	border: 1px solid #d8d8d8;
	overflow:hidden
}
.aws-search-form .input, .aws-search-btn, .aws-container .aws-search-field{
	border:none !important
}
.category-item {
	text-align: center;
	cursor: pointer;
	transition: transform 0.3s ease;
	padding: 0 !important;
	border-radius: 5px;
	background: transparent !important;
	border: none !important;
}

.category-item:hover {
	transform: translateY(0) !important;
	box-shadow: none !important;
}
.category-item:hover img{
	box-shadow: 0 0 5px #ccc !important;
}
.category-circle:hover {
	border-color: #dc3545 !important;
}
.category-item img:not(.modal-body .category-item img) {
	width: 100% !important;
	height: 100% !important;
	border-radius: 50% !important;
	object-fit: cover;
	margin-bottom: 0 !important;
}
.current-price, .original-price, .woocommerce-Price-currencySymbol{
	font-family:arial !important
}
.card-title{
	margin-top: 10px;
}
.rating-badge {height: 20px;}
.product-card:focus-within {
	outline: 2px solid transparent;
	outline-offset: 2px;
}
.product-grid .col.px-0{
	padding-right: .25rem !important;
	padding-left: .25rem !important;
}
.product-card img {
	height: 100%;
}
.wishlist-btn{
	box-shadow: 0 0 5px #ccc;
	font-size: 13px !important;
}
.product-card {
	border-radius: 5px !important;
	transition: transform 0.3s;
}
.price-container.mb-2, .rating-container.mb-2{
	margin-bottom: 0!important
}
.filter-item {
    display: flex;
    align-items: start;
}
.filter-item .form-check-input{
	margin-top:6px !important;
}
@media screen and (min-width: 768px) {
	.category-items-wrapper {
		justify-content: start;
	}
}

@media screen and (max-width: 520px) {
	h1, h2, h3, h4, h5, h6 {
		margin: 8px 0;
	}
	h5, .has-woostify-heading-5-font-size, .footerHdn {
		font-size: 20px !important;
	}
	h4, .has-woostify-heading-4-font-size {
		font-size: 23px;
	}
	h5, .has-woostify-heading-5-font-size {
		font-size: 18px;
	}
	.product-card img {
		height: 100%;
		max-height:350px;
		padding:0 !important;
	}
	.category-item:not(.modal-body .category-item) {
		width: auto !important;
		min-width: 70px !important;
	}
	#product-grid{
		/*margin:0 !important;*/
	}
	.category-item .category-circle{
		width: 70px !important;
		height: 70px !important;;
	}
	.category-card {
		min-width: 90px !important;
	}
	.category-items-wrapper{
		gap: 0.5rem !important;
		justify-content: center;
	}
	.rating-badge {
		font-size: 11px !important;
		min-width: 35px !important;
		padding: 0 6px !important;
		height: 20px;
	}
	.review-count{
		font-size: 11px !important;
	}
	.footer-icon{
		display:flex;
		gap:10px;
		justify-content: center;
	}
}

/*Footer*/
    .mobile-bottom-bar {
        padding: 2px 0 !important;
    }

    .mobile-bottom-bar> :nth-child(1) {
        margin-top: 5px;
    }

    .mobile-bottom-bar> :nth-child(2) {
        margin-top: -5px;
    }
	@media screen and (max-width: 520px) {
		.mCenter .col-md-3{
			text-align:center !important
		}
	}

.shimmerPan {
      position: relative;
      background-color: #FFF;
      border-radius: 6px;
      overflow: hidden;
      width: 100%;
      margin: 40px auto;
    }

    .shimmerPan .shimmerBG {
      -webkit-animation-duration: 2.2s;
      animation-duration: 2.2s;
      -webkit-animation-fill-mode: forwards;
      animation-fill-mode: forwards;
      -webkit-animation-iteration-count: infinite;
      animation-iteration-count: infinite;
      -webkit-animation-name: shimmer;
      animation-name: shimmer;
      -webkit-animation-timing-function: linear;
      animation-timing-function: linear;
      background: #ddd;
      background: linear-gradient(to right, #F6F6F6 8%, #F0F0F0 18%, #F6F6F6 33%);
      background-size: 1200px 100%;
    }

    @-webkit-keyframes shimmer {
      0% {
        background-position: -100% 0;
      }

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

    @keyframes shimmer {
      0% {
        background-position: -1200px 0;
      }

      100% {
        background-position: 1200px 0;
      }
    }

    .shimmerPan .media {
      height: 200px;
    }

    .shimmerPan .p-32 {
      padding: 32px;
    }

    .shimmerPan .title-line {
      height: 24px;
      width: 100%;
      margin-bottom: 12px;
      border-radius: 20px;
    }

    .shimmerPan .content-line {
      height: 8px;
      width: 100%;
      margin-bottom: 16px;
      border-radius: 8px;
    }

    .shimmerPan .end {
      width: 40%;
    }

    .m-t-24 {
      margin-top: 24px;
    }
.background-primary-color{
	background-color: var(--primary-color) !important;
	color: white !important;
}
.background-primary-color:hover{
	color: black !important;
}
.woocommerce-form.woocommerce-form-register, .woocommerce-ResetPassword.lost_reset_password{
	clear: both;
    border: 2px dashed #e8e8e8;
    border-radius: 2px;
    padding: 30px;
	max-width: 600px;
    margin: 0 auto 30px auto;
}
.woocommerce-ResetPassword.lost_reset_password{
	margin: 10px auto 0 auto;
}
.woocommerce-form-row.form-row{
	float: none;
}
main.container-fluid{
	display: flex;
	flex-direction: column;
}