html {
  scroll-behavior: smooth;
}
@font-face{ 
  font-family:stangith;
  src: url('../fonts/stangith.ttf');
}
@font-face{ 
  font-family:avenir-light;
  src: url('../fonts/avenir-light.otf');
}
*{ 
 font-family: avenir-light;
}
/* Header Background */
header {
	background: #FF4081;
	color: white;
	padding: 10px 0px;
}
/* Logo */
.logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
}
/* Search Bar */
.search-bar {
  flex: 1;
}
header .search-bar {
	text-align: center;
	position: relative;
	align-content: center;
	padding: 0px;
}
header .search-bar input {
	padding: 10px 15px;
	border-radius: 3px;
	outline: none;
	font-size: 14px;
	border: 0px;
	width: 100%;
	color: #ff0078;
}
/* Icons */
.header-icons {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: end;
}
.header-icons a {
  text-decoration: none;
  color: white;
  position: relative;
}
/* Cart Button */
.cart-btn {
  color: #e3306e;
}
header  a::after {
  content: "" !important;
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #fff;
  transition: width 0.3s;
}
header a:hover::after {
  width: 100%;
}
header .search-bar svg {
	margin-left: -34px;
	color: #000000db;
	margin-top: -2px;
}
header .header-icons a{ 
  font-size: 16px;
}
header .header-icons a span, .mobile-menu .wishlist_Total_count, .mobile-menu .cart_Total_count {
	background: #25d366;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: block;
	position: absolute;
	font-size: 14px;
	text-align: center;
	top: -11px;
	right: -13px;
	border: 0px;
} 
.mobile-menu .wishlist_Total_count, .mobile .cart_Total_count {
	right: -6px;
	right: -6px;
} 
body{ 
background: #f9f9fb;
}
a{ 
  text-decoration: none;
}
.mobile-nav a {
	padding: 5px 20px;
	text-decoration: none;
	color: #222;
	font-size: 18px;
	margin-top: 10px;
	width: 92%;
	color: #222;
	font-size: 15px;
	text-align: center;
	margin-left: 10px;
	margin-right: 10px;
	transition: 0.3s;
}
.mobile-nav a {
	color: #fff !important;
	background: #FF4081;
} 
.mobile-nav a:hover {
	background: #FF4081D6 !important;
	color: #fff !important;
}
.mobile-nav {
	display: none !important;
}
.menu-btn {
  display: none;
}
.mobile-nav {
  position: static;
  width: 100%;
  height: auto;
  flex-direction: row;
  background-color: transparent;
  color: black;
  padding-top: 0;
  left: 0;
  transition: none;
}
.mobile-nav a {
  color: #ff4081;
  padding: 10px 15px;
}
.overlay {
  display: none;
}
/* Navbar button */
.menu-btn {
	font-size: 25px;
	cursor: pointer;
	color: #FFF;
} 
.menu-btn.active { 
  color: #FF4081 !important;
}
/* Navbar container */
.mobile-nav {
	position: fixed;
	top: 0;
	left: -250px; /* hidden initially */
	width: 250px;
	height: 100%;
	background-color: #130505a3;
	color: white;
	display: flex;
	flex-direction: column;
	padding-top: 60px;
	transition: left 0.3s ease; /* smooth slide */
	z-index: 1000;
}
/* Show navbar */
.mobile-nav.active {
left: 0;
}
/* Overlay */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	z-index: 999;
} 
.singIn_signUp_area #open_loginForm {
	text-align: center;
	font-size: 15px;
	color: #ff4081;
	cursor: pointer;
	margin-left: 5px;
	display: inline-block;
}
.overlay.active {
display: block;
} 
/*home page filters */
.filter-container {
	margin: 20px 0px;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
	padding: 0px;
	height: 286px;
	position: sticky;
	top: 10px;
}
.main-container.no-show .filter-area{ 
  display: none;
}
.main-container.show .slider-area{ 
  display: none;
}
/*home page categories */
.category-container {
  margin: 20px 0px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
  padding: 0px;
  height: 404px;
}
.category-header {
  background: #FF4081;
  color: #fff;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
}
.category-item {
  display: flex;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s;
}
.category-item:hover {
  background: #f5f5f5;
}
.category-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 15px;
}
.category-text {
	flex: 1;
	font-size: 16px;
	font-weight: 500;
	color: #00008b;
	text-transform: capitalize;
}
.arrow {
	font-size: 18px;
	color: #00008b;
}
 .carousel {
	position: relative;
	width: 100%;
	height: 392px;
	margin-top: 23px;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
.slide {
  min-width: 100%;
  height: 100%;
}
.slide img {
  width: 100%;
  height: 100%;
}
/* Dots */
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: 0.3s;
}
.dot.active {
  background: white;
  transform: scale(1.2);
}
.sidebar-categories {
	height: 333px;
	overflow-y: scroll;
	margin-top: 4px;
}
/* Scrollbar style */
.sidebar-categories {
  scrollbar-width: thin;              /* thin / auto / none */
  scrollbar-color: #FF4081 #f1f1f1;       /* thumb color | track color */
}
/* 🔥 For Chrome, Edge, Safari */
.sidebar-categories::-webkit-scrollbar {
  width: 40px;
}
.sidebar-categories::-webkit-scrollbar-track {
  background: #FF4081;
}
.sidebar-categories::-webkit-scrollbar-thumb {
  background: #FF4081;
  border-radius: 4px;
}
.sidebar-categories::-webkit-scrollbar-thumb:hover {
  background: #FF4081C9;
}
/* home page filter start */
 .filter-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}
.filter-box h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #444;
}
.filter-group {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.filter-group:last-child {
  border: none;
}
.filter-option {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #333;
}

/* 🎨 Radio + Checkbox color */
input[type="radio"], input[type="checkbox"] {
  accent-color: #ff4081; 
  margin-right: 6px;
}

/* 🎨 Price Range styling */
.price-range {
  width: 100%;
  -webkit-appearance: none;
  background: transparent;
}

.price-range::-webkit-slider-runnable-track {
  height: 6px;
  background: #ddd;
  border-radius: 4px;
}

.price-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #ff4081;
  cursor: pointer;
  margin-top: -5px;
}

.price-range::-moz-range-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  cursor: pointer;
}

.price-range::-moz-range-track {
  height: 6px;
  background: #ff4081;
  border-radius: 4px;
}

.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #555;
}
/* home page filter end */
/* home page products start */
.product-card {
	border-radius: 5px;
	overflow: hidden;
	transition: all 0.3s;
	margin: 10px;
}
.discount-badge {
	position: absolute;
	top: 0px;
	left: 0px;
	background: #25d366;
	color: #fff;
	font-size: 12px;
	padding: 3px 8px;
	border-radius: 0px;
	z-index: 1;
	box-shadow: 1px 1px 7px #ddd0;
}
.wishlist-btn {
	position: absolute;
	top: 1px;
	right: 15px;
	color: #25d366;
	font-size: 23px;
	cursor: pointer;
	z-index: 1;
}
.product-img {
	height: 100%;
	object-fit: cover;
	width: 100%; 
	transition: 0.5s;
}
.rating i {
  color: #ffc107;
  font-size: 13px;
} 
.rating span {
  color:#7d7676;
  font-size: 13px;
}
.product {
	padding: 0px;
	position: relative;
}
.product-area {
	padding-top: 50px;
	padding-bottom: 50px;
}
.product-img:hover {
	transform: scale(1.2);
}
  /* home page products end */ 
  
.product_sel_price {
  color: #47d764 !important;
} 
.product_ori_price {
	position: relative;
	font-size: 14px;
	color: #0000009e !important;
	font-weight: 400;
}
.product_ori_price::before {
	text-decoration: none !important;
	display: block;
	content: '';
	width: 100%;
	position: absolute;
	margin: auto;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	height: 1px;
	background: #0000009e;
}
.category-filter-products {
	margin: 20px 0px;
	position: relative;
} 
 /* spinner */ 
.star-spinner {
	width: 80px !important;
	position: absolute;
	top: -108px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	margin: auto;
	height: 55px !important; 
	display:none;
	z-index: 1;
}
.star-spinner{
	transform-origin: center center;
	animation: spin 1s linear infinite;
	--pulse-duration: 1.2s;
	animation: spin 1s linear infinite, pulse var(--pulse-duration) ease-in-out infinite;
}
.star-spinner svg{
	width: 100%;
	height: 100%;
	display: block;
	fill: #ff4081;
}

.star-fill{
	fill: var(--spinner-color);
	opacity: 0.95;
	transform-origin: center;
	animation: inner-rotate 1.6s linear infinite reverse;
}

.star-outline{
	fill: none;
	stroke: rgba(0,0,0,0.08);
	stroke-width: 2;
}
@keyframes spin{
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}
@keyframes pulse{
	0%   { transform: scale(1); }
	50%  { transform: scale(1.08); }
	100% { transform: scale(1); }
}
@keyframes inner-rotate{
	from { 
	  transform: rotate(0deg);  
	}
	to {  
	   transform: rotate(-360deg);  
	 }
}

.sr-only{
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
	color: #ff4081
}
.result_cat{
   color: #ff4081; 
   text-transform: capitalize; 
}
.wishlist-btn.active .active{ 
  display: inline-block !important;
} 
.wishlist-btn .inactive{ 
  display: inline-block;
}
.wishlist-btn.active .inactive{ 
  display: none !important;
}
.custom-toast-container * {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* toast plugin start*/
.custom-toast-container {
	position: fixed;
	z-index: 1050;
	top: 4px;
	left: 0px;
	right: 0px;
	margin: auto;
	max-width: 333px;
	height: 69px;
}
.custom-toast {
	opacity: 0;
	transform: translateY(100%);
	transition: opacity 0.3s, transform 0.3s;
	width: 330px;
	height: auto;
	padding: 3px 15px 3px 15px;
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 9px 10px rgb(0 0 0 / 29%);
	margin-right: 1rem;
	align-items: center;
	display: flex;
	margin-bottom: 0.5rem;
}
.custom-toast.show {
	opacity: 1;
	transform: translateY(0);
}
.custom-toast .icon-container {
	display: flex;
	align-items: center;
	margin-right: 10px;
}
.custom-toast.info .icon-container > svg {
	fill: #FF4081 !important;
}
.custom-toast .icon-container > svg {
	height: 20px !important;
}
.custom-toast .content-container {
	display: flex;
	flex-direction: column;
	flex: 1;
}
.custom-toast .content-container .title {
	font-weight: 500;
	font-size: 15px;
}
.custom-toast .content-container .message {
	font-size: 14px;
	font-weight: 400;
	color: #111215;
}
.custom-toast > button {
	background-color: transparent;
	font-size: 25px;
	color: #9b9dab;
	cursor: pointer;
	border: 0;
	padding: 0;
	margin: 0;
	height: 34px;
	width: 34px;
}
.custom-toast.success .icon-container > svg {
	fill: #47D764;
}
.custom-toast.success .content-container .title {
 color: #47d764;
}
.custom-toast.error .icon-container > svg {
 fill: #ff355b;
}
.custom-toast.error .content-container .title {
 color: #ff355b;
}
.custom-toast.info .icon-container > svg {
 fill: #2F86EB;
}
.custom-toast.info .content-container .title {
 color: #2F86EB;
}
.custom-toast.warning .icon-container > svg {
 fill: #FFC021;
}
.custom-toast.warning .content-container .title {
 color: #FFC021;
}
.custom-toast-container .custom-toast:last-child {
	margin-bottom: 1rem;
}
.lead { 
      font-size: 1.5rem; 
	  font-weight: 300;background: linear-gradient(to right, #000000 0%, #000000 50%,#999999 100%);
	  -webkit-background-clip: text;
	  -webkit-text-fill-color:transparent;
	   margin: 3rem auto;  
}
/* toast plugin end*/
/*product page start*/
 .product-img { 
   transition: transform 0.3s ease;  
}
.product-img:hover {  
  transform: scale(1.05);  
 }
.price {
	font-size: 19px;
	font-weight: bold;
	color: #ff4081;
	margin: 0px;
	text-align: left;
}
.old-price {  
    text-decoration: line-through;  
	color: #6c757d;  
	margin-left: 10px;  
} 
.product_page .price{ 
 font-size: 35px;
}
.product_page .old-price{ 
 font-size: 25px;
}


.btn-buy { 
 padding: 10px 30px;  
}
.related-product img { 
	border-radius: 2px;  
}
.review-box { 
  background:  
  #fff; padding: 15px; border-radius: 8px;  
  margin-bottom: 15px;  
} 
.gallery-container > div { 
  width: 100%;
}
.variant-btn { 
    min-width: 50px;  
}
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
} 
.main-image {
  position: relative;
  width: 400px;
  height: 400px;
  border: 1px solid #ddd;
  overflow: hidden;
  cursor: crosshair;
}
.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.zoom-box {
	width: 100%;
	height: 550px;
	background-repeat: no-repeat;
	background-size: 800px 800px;
	display: none;
	position: absolute;
	z-index: 1;
}
.thumbnail-wrapper {
	position: relative;
	margin-top: 15px;
	overflow: hidden;
	border-top: 1px solid #ddd;
	padding-top: 10px;
}
.thumbnails {
  display: flex;
  gap: 10px;
  transition: transform 0.3s ease;
}
.thumbnails img {
	width: 70px;
	height: 70px;
	object-fit: cover;
	border: 2px solid transparent;
	cursor: pointer;
	flex-shrink: 0;
	transition: 0.3s;
}
 .thumbnails img:hover {
  transform: scale(1.2);
} 	
.thumbnails img.active {
	border: 1px solid #e3dddf;
}
.thumbnails {
	gap: 10px;
	scroll-behavior: smooth;
	white-space: nowrap;
	overflow-y: hidden;
	margin: auto;
	overflow-x: auto;
}
.thumbnails img {
  display: inline-block;
  flex-shrink: 0;
	} 
.single_product_des{ 
	position: relative;
	} 
.add_to_cart {
	transition: 0.3s;
	margin-right: 10px;
	background: unset;
	color: #222;
	border: 1px solid #222;
} 
.add_to_cart i {
	color: #ff4081;
}
.buy-now {
	background: #FF4081;
	color: #fff;
	transition: 0.3s;
	margin-bottom: 13px;
	border: 0px;
}
  .buy-now:hover {
	background: #FF4081C9; 
	color: #fff;
 }
.add_to_cart:hover {
	background: #f5f5f5;
	color: #000;
	border: 1px solid #2220;
}
#thumbLeft, #thumbRight {
	width: 32px;
	font-size: 25px;
	color: #fff;
	background: #ff4081;
	position: absolute;
	top: 32px;
	border-radius: 3px;
	cursor: pointer;
	text-align: center;
	display: none;
}
#thumbLeft:hover, #thumbRight:hover {
	background: #ff4081c4;;
}
 #thumbRight {
	right: 0px
} 
.form-select:focus {
	border-color: unset;
	outline: 0;
	box-shadow: unset;
} 
.form-control:focus {
	background-color: unset;
	border-color: #ddd;
	outline: 0;
	box-shadow: unset;
} 
/*
 .faq-item {
  background: #fff;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-question {
  padding: 15px 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
    }
.faq-question:hover {
    background: #f7f7f740;
    }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  transition: max-height 0.4s ease, padding 0.3s ease;
    }
.faq-item.active .faq-answer {
	max-height: 300px;
	padding: 15px 20px;
	border-top: 1px solid #ececec;
}
.arrow {
    transition: transform 0.3s ease;
    }
.faq-item.active .arrow {
      transform: rotate(90deg);
    }  
.faq-item .arrow i::after {
	color: #bbb6b6a3;
	font-size: 22px;
	border-bottom: 1px solid #7d7a7a;
	display: block;
	content: '';
	width: 12px;
	height: 12px;
	border-left: 1px solid #7d7a7a;
	transform: rotate(-134deg)
} 
*/
.product-main-dis, .product-small-dis {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.3;
}
.card.related-product {
	border: 0px;
	background: unset;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}
 .card-img-top{
	 transition: 0.3s;
	} 
.card-img-top:hover {
		transform: scale(1.2);
 } 
 .card .card-body {
	position: relative;
	overflow: hidden;
	background: #f8f9fa;
}
.Review-btn {
	background:#ff0078 ;
	border: 0px;
	padding: 10px;
	transition: 0.3s;
}
.Review-btn:hover {
	background:#ff0078c4 !important ;
}
#mainImage {
	width: 100%;
} 
.ratings {
	margin: 10px 0px 0px 0px !important;
}
/*product page end*/
.color-varient span{ 
 text-transform: capitalize;
}
.color-variant .d-flex div, .size-variant .d-flex div{ 
  margin-right: 5px;
  text-transform: capitalize;
}

.quantity .btn:hover {
	color: #000;
	background-color: #f5f5f5;
	border-color: #000;
}
.ratings span:last-child a {
	color: rgb(255, 193, 7) !important;
	text-decoration: underline !important;
	transition: 0.3s;
}
.ratings span:last-child:hover{
	text-decoration: unset !important;
}
.card-img, .card-img-bottom, .card-img-top {
	max-height: 200px;
	width: 100%;
}
.single_product_title {
	font-size: 25px;
	font-weight: 700;
	line-height: 1.1;
}
.stock_out {
	color: #b5b5b5;
	line-height: 20px;
}
/* Overlay */
.singIn_signUp_area .overlay, #logIn_area .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
/* Modal box */
.singIn_signUp_area .modal-box, #logIn_area .modal-box {
  background: #fff;
  width: 90%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  padding: 30px;
  position: absolute;
  opacity: 0;
  /*transform: translateY(80px);*/ 
   top: 50%;
   left: 50%;
  transform: translate(-50%, 100px);
} 
.loginAndforgotForm_area {
	position: relative;
	overflow: hidden;
	height: 360px;
}
.loginAndforgotForm_area  #loginForm, .loginAndforgotForm_area .ForgotPasswordForm, .ForgotEmailOTPForm, #resetPasswordForm {
  position: absolute;
  top: 0;
  width: 100%;
  transition: transform 0.5s ease, opacity 0.5s ease;
} 

.loginAndforgotForm_area  #loginForm.active {
  transform: translateY(0);
  opacity: 1;
}

.loginAndforgotForm_area  #loginForm.hidden {
  transform: translateY(100%);
  opacity: 0;
}
.loginAndforgotForm_area .ForgotPasswordForm {
  transform: translateY(200%);
  opacity: 0;
}
.loginAndforgotForm_area .ForgotPasswordForm.active {
  transform: translateY(0);
  opacity: 1;
} 
.ForgotEmailOTPForm{ 
   transform: translateY(200%);
   opacity: 0;
} 
.ForgotEmailOTPForm.active{ 
   transform: translateY(0);
   opacity: 1;
} 
.resetPasswordForm{ 
   transform: translateY(200%);
   opacity: 0;
}
.resetPasswordForm.active{ 
   transform: translateY(0);
   opacity: 1;
}
/* Smooth bottom-to-center animation */
@keyframes slideUpSmooth {
  from {
    transform: translate(-50%, 100px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
/* Close button */
.singIn_signUp_area .close-btn, #logIn_area .close-btn{
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 30px;
  color: #444;
  cursor: pointer;
  z-index: 10 !important;
}

/* Switch buttons */
.singIn_signUp_area .switch-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
  gap: 10px;
}

.singIn_signUp_area .switch-buttons button {
  flex: 1;
  border: none;
  cursor: pointer;
  background: unset;
  color: #22222280;
}
.singIn_signUp_area .switch-buttons .active {
   color: #222;
}
.singIn_signUp_area form {
  display: none;
}
#signupFormByPassword{ 
  position: relative;
}
.singIn_signUp_area form.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
.singIn_signUp_area label, #logIn_area label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #444;
}
.singIn_signUp_area input, #logIn_area input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 15px;
}
.singIn_signUp_area .btn-submit, #otpSection button, #logIn_area button, .ForgotPasswordForm button {
  width: 100%;
  padding: 10px;
  background: #FF4081;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 15px;
}
.singIn_signUp_area .btn-submit:hover,  #logIn_area button:hover, .ForgotPasswordForm button:hover, #otpSection button:hover {
  background: #000;
}
.singIn_signUp_area .alt-link {
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
}
.singIn_signUp_area .alt-link a {
	color: #FF4081;
	font-weight: bold;
	font-size: 14px;
	margin-left: 3px;
	transition: 0.3s;
	cursor: pointer;
	text-decoration: underline !important;
		font-size: 14px !important;
}
.singIn_signUp_area .alt-link:hover a {
	text-decoration: none !important;
}
.ConPwd, .pwd div{
 position: relative;
}  
.ConPwd i, .pwd i {
	position: absolute;
	top: 13px;
	right: 8px;
	cursor: pointer;
	transition: 0.3s;
}
.ConPwd .fa-eye, .pwd .fa-eye{
  display: none;
} 
.ConPwd i:hover, .pwd i:hover{
	font-size: 17px !important; 
}
.singIn_signUp_area .tel { 
  position: relative;
}
.singIn_signUp_area .tel input {

	padding-left: 33px !important;
} 
.singIn_signUp_area .tel img {
	width: 21px;
	top: 40px;
	position: absolute;
	left: 19px;
} 

#signupFormByNumber p, #signupFormByPassword p, #loginForm .email, #loginForm .forgotPwd, .ForgotPasswordForm .email {
	margin: 3px 0px;
	color: #ff0000c4;
	font-size: 15px;
	line-height: 17px;
} 
.singIn_signUp_area #signupFormByPassword .row > div{ 
  margin-bottom: 10px;
}
input:focus,
.form-control:focus {
  box-shadow: none;
  outline: none;
  border-color: #ccc;
}
#otpSection div span:first-child {
	font-size: 15px;
	color: #0c8c0c;
}  
#otpSection div span:last-child{
	color: #ff4081;
	margin-bottom: 6px;
	font-size: 15px;
	display: inline-block;
}
#otpSection p {
	margin: 3px 0px;
	color: #ff4081;
	font-size: 19px;
	line-height: 17px;
} 
#otpSection { 
  display: none;
}
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.95);}
  to {opacity: 1; transform: scale(1);}
}
.loader {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dot {
  width: 15px;
  height: 15px;
  background-color: #fff; /* Dot color */
  border-radius: 50%;
  margin: 0 5px;
  animation: bounce 0.6s infinite alternate;
}
.dot:nth-child(2) {
  animation-delay: 0.2s;
}
.dot:nth-child(3) {
  animation-delay: 0.4s;
}
.gender_area input {
	width: unset !important;
	margin-left: 4px;
	margin-right: 11px;
}
.gender_area label {
	height: 25px;
} 
.loader{ 
 display : none;
}

.loader.signUp .dot {
	
	background-color: #FF4081;
}
.loader.signUp {
	position: absolute;
	top: 0px;
	right: 0px;
	left: 0px;
	bottom: 0px;
	margin: auto;
	width: 100%;
	height: 100%;
	z-index: 1;
}
 /* Preloader full screen cover */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 70px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	bottom: 0px;
	right: 0px;
	margin: auto; 
	display: none;
}
.single_product_des #preloader {
	position: absolute;
	margin: unset;
	width: 40px;
	height: 40px;
	top: 3px;
	left: 5px;
}
.single_product_des #preloader img {
	
	width: 40px;
    height: 40px;
}
/* Logo Rounding animation */
#loading-logo {
	width: 70px;
	height: 70px;
	animation: spin 2s linear infinite;
}

/* Spin animation keyframe */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

#forgotPassword {
	text-align: right;
	display: block;
	cursor: pointer;
	font-size: 15px;
	color: #FF4081;
	border-bottom: 1px solid #FF4081;
}
#open_SignUpForm{ 
    text-align: right;
	cursor: pointer;
	font-size: 15px;
	color: #FF4081;
	border-bottom: 1px solid #FF4081;
}
#backLink {
	color: #FF4081;
	font-size: 15px;
	cursor: pointer;
	border-bottom: 1px solid #FF4081;
}

@keyframes bounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px); /* Adjust bounce height */
  }
}

.social-icons{ 
  margin-top: 10px;
}

.social-icons a {
	font-size: 22px;
	margin: 0px 1px;
	border-bottom: 1px solid #0b0a0a00;
	transition: 0.5s;
}
.social-icons .fb {
   color:#0037c1
} 
.social-icons .whatsapp {
   color: #63bd56;
} 
.social-icons .twitter {
	color: #4e9ed6;
}
.social-icons .linkedin {
	color: #087ebb;
}
.social-icons .instagram {
	color: #ef0f78;
}
.social-icons a:hover  {
	border-bottom:  1px solid #0b0a0a6b;
}

.mobile-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ff0078;     /* pink color */
    padding: 8px 0;
    z-index: 9999;
	display: none;
}

.mobile-menu .nav-item {
	color: #fff;
	text-decoration: none;
	font-size: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}
.mobile-menu i {
    font-size: 20px;
    margin-bottom: 4px;
} 
.cart-title {
	color: #352f32f5;
	font-size: 20px;
}
.my-cart-item-img img{ 
  width: 80px;
  height: 80px;
}
.cart_items{ 
  position: relative;
}
.cart_items #preloader {
	right: 0px;
	bottom: 0px;
	top: 0px;
	left: 0px;
	margin: auto;
	position: absolute;
}
.cart_items .btn:hover {
	color: #222;
	background-color: #f5f5f5;
	border-color: var(--bs-btn-hover-border-color);
}
.remove-cart-item{
  pointer-events: auto;
  background: #ff0078;
  border: 0px;
  color:#fff;
  transition: 0.3s;
} 
.proceed_to_checkout {
	background: #ff0078;
	color: #fff;
	transition: 0.3s;
}
.proceed_to_checkout:hover {
	background: #ff0078a8;
	color: #fff;
}
.cart-item{ 
  display: flex;
}
.checkout-page .payment-option.active {
       /* border: 2px solid #ff0078;
        background: #fff1f8;*/
    }
    .checkout-page .checkout-box {
        background: #fff;
        padding: 30px;
        border-radius: 12px;
        border: 1px solid #eee;
    }
   .checkout-page label { font-weight: 500; margin-bottom: 6px; }
   .checkout-page .form-control, .form-select {
        height: 48px;
        border-radius: 8px;
        border: 1px solid #ddd;
        font-size: 15px;
    }
   .checkout-page textarea.form-control {
        height: auto;
        padding-top: 12px;
        border-radius: 10px;
    }
    .checkout-page .summary-row p {
        margin: 0;
    }
   .checkout-page .payment-option {
        border: 1px solid #ddd;
        padding: 12px 15px;
        border-radius: 12px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .checkout-page .payment-option img { width: 35px; }
    .checkout-page .payment-option input { height: 18px; width: 18px; }
    .checkout-page .pay-btn {
        background: #ff0078;
        color: #fff;
        padding: 14px;
        width: 100%;
        border: none;
        border-radius: 10px;
        font-size: 18px;
        font-weight: 600;
		transition: 0.3s;
    }
	.my-cart-item-img img {
	width: 60px;
	height: 60px;
	border-radius: 4px;
}
.checkout-page .pay-btn:hover {
	background: #ff0078a3;
}
 .star-rating i {
        font-size: 18px;
        cursor: pointer;
        color: #ccc;
        transition: 0.2s;
 }
 .star-rating i.active {
        color: #ffcc00;
 }
.discount_btn { 
	background: #281f23;  
	padding: 9px 10px 5px 10px;
	transition: 0.3s;
}
.discount_btn:hover { 
	background: #ff0078 !important;
}
.payment_btn {
	width: 100%;
	background: #ff0078;
	color: #fff;
	padding: 10px;
	border: 0px;
	border-radius: 4px;
	margin-top: 14px;
}
.discount_area{ 
 position: relative;
}
.discount_area #preloader {
	position: absolute;
	left: 0;
	bottom: 0px;
	right: 0px;
	top: 30px;
}
.middle-underline {
	position: relative;
	display: inline-block;
	font-size: 15px;
	margin-right: 3px;
}
.middle-underline::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%; 
    height: 2px;
    background: #ff0078; /* চাইলে তোমার brand color #ff0078 */
    transform: translateY(-50%);
}
.payment_note p { 
   font-size: 12px; 
   color: #333232; 
   margin-bottom: 10px !important;
}
.payment_note p span { 
   color: #ff0078;
}

.top_products span {
	font-size: 31px;
	font-weight: 700;
	color: #001858;
}
.row-cols-md-4{ 
  margin: auto;
}

.row-cols-md-4 .position-relative{ 
  padding: 0px 4px;
}
.text-truncate {
	font-size: 15px;
	color: #00008b;
	font-weight: 500;
	text-align: left;
}
.rating {
	text-align: left;
}
.f-delivery {
	background: #ff0078;
	padding: 2px 8px;
	color: #fff;
	text-transform: capitalize;
	display: block;
	width: 116px;
	position: absolute;
	z-index: 1;
	top: 26px;
	opacity: 1;
	text-align: center;
	animation: bgFade 2s ease-in-out infinite;
	right: 5px;
	margin: auto;
	height: 31px;
	transform: rotate(28deg);
	border-radius: 0px;
}
/* Background fade (0.5 → 1 → 0.5) */
@keyframes bgFade{
  0%   { background-color: rgba(255, 0, 120, 0.5); }
  50%  { background-color: rgba(255, 0, 120, 1); }
  100% { background-color: rgba(255, 0, 120, 0.5); }
}
.my-cart-items .f-delivery, .checkout-page .f-delivery, .single_product_des .f-delivery {
	transform: unset !important;
	position: unset !important;
	width: 99px;
	height: 23px;
	font-size: 13px;
	margin: 0px;
}
.category-filter-products #preloader {
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	margin: auto;
}
.search-result-box {
	position: absolute;
	width: 100%;
	background: white;
	border-radius: 3px;
	z-index: 9999;
	left: 0px;
	top: 50px;
}
.search-item{
    padding:10px;
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
}
.search-item:hover{
    background:#f7f7f7;
}
.search-icon {
	position: absolute;
	color: #fff;
	right: -6px;
	top: -4px;
	font-size: 18px;
	padding: 12px;
	background: #ff4081b2;
	cursor: pointer;
}
.search-result-box .card-img-top {
  width: 50px !important;
  height: 50px !important;
}
.search-result-box .product_ori_price {
	font-size: 11px;
}
.search-result-box .price {
	font-size: 14px;
}
..search-result-box .rating span {
	color: #7d7676;
	font-size: 11px;
}
.search-result-box .text-truncate {
	font-size: 13px;
}
.search-result-box .row {
	width: 90%;
}
.search-result-box .result {
	max-height: 360px;
	overflow-y: auto;
}
.search-result-box #preloader {
	position: unset;
	margin-top: 15px;
}
.search-result-box #loading-logo {
	width: 50px;
	height: 50px;
}
.messages {
	width: 58px;
	height: 102px;
	position: fixed;
	right: 0px;
	margin: auto;
	bottom: 0px;
	top: 0px;
	z-index: 3;
}
.whatsapp-float{
    background: #25D366;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    text-decoration: none;
}
.whatsapp-float:hover{
    transform: scale(1.1);
    transition: 0.2s;
}
.messenger-float{
    background: #0084FF;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    text-decoration: none;
	margin-bottom: 9px;
}
.messenger-float:hover{
    transform: scale(1.1);
    transition: 0.2s;
}
.footer-content p{
	font-size: 15px;
	color: #f2ecec;
	margin: 6px 0px;
}
 .footer-content ul {
	color: #f2ecec;
	margin: 6px 0px;
}
 .footer-content ul li a{
	color: #f2ecec;
	font-size: 16px;
	transition: 0.3s;
}
 .footer-content h4{
	color: #f2ecec;
}
 .footer-content ul li a:hover {
	font-size: 15px;
}
footer .contact-us div a { 
  color: #f2ecec !important;
  transition: 0.3s;
}
 footer .contact-us div a:hover {
	font-size: 15px;
}
footer .socail-icons a {
	color: #dbdbdb;
	font-size: 22px;
	border: 2px solid #626060;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	display: block;
	text-align: center;
	margin-left: 5px;
	transition: 0.3s;
}
footer .socail-icons a:hover {
	border-color: #fff;
}
.terms-conditions{ 
 margin-top: 50px;
}
.terms-conditions h2, .terms-conditions h1, .privacy-policy h2, .privacy-policy h1 {
       color: #222;
	   font-size: 25px;
	}
.terms-conditions hr, .privacy-policy hr {
      margin: 25px 0;
  }
.terms-conditions a, .privacy-policy a, .about-us a{
	color: #0d0c0c;
	text-decoration: underline;
	transition: 0.3s;
}
.terms-conditions a:hover, .privacy-policy a:hover, .about-us a:hover {
	text-decoration: none;
}
.contact-us .dis {
	font-size: 16px;
}
.contact-us .titile {
	color: #ff0078;
	font-size: 20px;
	margin-left: 10px;
}
.contact-us .icon{ 
	font-size: 26px;
	color: #222;
	margin-top: ;
}
.contact-us .bg-img {
	background-image: url('../images/contact-us.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.contact-us h1 {
	font-size: 20px;
	line-height: 30px;
}
.contact-us .dis a {
	 color: #2d2c2c
}

/* Styles for screens smaller than 768px (e.g., tablets in portrait mode) */ 
@media (min-width: 200px) and  ( max-width: 577px) {
  header {
	flex-direction: column;
	padding: 15px;
  }
  .search-bar {
	margin: 15px 0;
  }
  nav {
	flex-wrap: wrap;
	gap: 15px;
  }
  	 header .search-bar input {
		width: 100%;
	}
	header .container {
		max-width: 100%;
	}
 .header-icons {
		display: none;
	} 
 .mobile-nav {
	display: flex !important;
}
 .custom-toast {
        margin: auto 0.5rem;
        left: 0;
        right: 0;
        width: calc(100% - 1rem);
        margin-bottom: 0.5rem;
    }
    .custom-toast-container {
        margin: 0;
    } 
.singIn_signUp_area input, #logIn_area input {
	font-size: 15px;
} 
p, label {
	font-size: 16px;
}
h1, h2, h3, h4 {
	font-size: 25px;
}

.quantity{ 
  justify-content: center;
}
.quality-buttons{ 
 text-align:center;
}

.variant-product .color-variant{ 
 margin-bottom: 2px !important;
}
.quality-buttons button {
	flex: 0 0 auto;
	width: 100%;
}
.single_product_title {
	font-size: 20px;
}
.thumbnail-wrapper {
    overflow: unset !important;
}
#thumbLeft, #thumbRight {
	width: 26px;
	font-size: 20px;
	top: 92px;
}
.thumbnails img {
	width: 45px;
	height: 45px;
	border: 0px;
}
.zoom-box {
	height: 300px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	display: none !important;
}
.card .card-body {
	padding: 8px;
}
.price {
	font-size: 19px;
}
.discount-badge {
	font-size: 11.5px;
	padding: 2px 5px;
}
.wishlist-btn {
	font-size: 20px;
}
.product_page .old-price {
	font-size: 20px;
	margin-left: 4px;
}
.product_page .price {
	font-size: 28px;
}
.product_page {
	margin-bottom: 3px !important;
} 
.ratings {
	margin: 4px 0px !important;
}
.product-stock-or-not span {
	margin: 4px 0px;
}
.mobile-menu i {
	font-size: 18px;
	margin-bottom: 4px;
}
.mobile-menu .nav-item {
	font-size: 11px;
}
  .menu-btn {
	display: block !important;
    position: absolute;
   }
   header .container {
	max-width: 99%;
	margin-top: -6px;
   }
   	header {
	flex-direction: column;
	padding: 3px 15px;
   }
   .loginAndforgotForm_area {
	height: 360px;
}
 .gallery-container {
	margin-top: 0px;
  }
 .cart_items .cart-item {
	align-items: flex-start !important;
  }
  .remove-cart-item {
	padding: 5px !important;
}
.top_products span {
	font-size: 25px;
}
 .category-container {
	order: 1;
}
.carousel {
	margin-top: 4px;
}
.category-item {
	display: block;
	text-align: center;
}
.sidebar-categories {
	height: unset;
	display: flex;
}
.category-container {
	height: unset;
	width: 95%;
	margin: 20px auto 10px auto;
    box-shadow: unset !important;
}
.arrow {
	display: none;
}
.category-item img {
	width: 40px;
	height: 40px;
}
.category-text {
	font-size: 13px;
}
.category-item {
	padding: 8px;
}
.category-header {
	padding: 5px;
	font-size: 15px;
	font-weight: bold;
}
.sidebar-categories {
	justify-content: center;
}
.category-header {
	text-align: center;
}
.carousel {
	height: 170px;
}
.product-area {
	padding-top: 2px;
	padding-bottom: 2px;
}
.top_products span {
	font-size: 20px;
}
.category-item img {
    margin-right: 0px;
}
.top_title {
	font-size: 12px;
}
.filter-container {
	width: 95%;
	margin: 20px auto 2px auto;
}
header .search-bar {
	width: 96%;
	margin: auto;
	margin-top: 2px;
}
header .logo img {
    margin-bottom: 4px;
	width: 80px !important;
	margin-top: 9px;
	
}
.header_container{ 
  display: block;
}
.logo {
	margin-left: 25px;
	display: block;
	width: 100%;
}
.search-icon {
	padding: 8px 15px 8px 12px;
	top: 0px;
}
.mobile-menu {
	display: flex;
}
.filter-container {
	position: unset !important;
}
footer {
	padding-bottom: 30px;
}
.footer-logo {
	text-align: center;
}
.contact-us .bg-img {
	height: 300px;
	width: 95%;
	margin: auto;
	margin-bottom: 10px;
}
.contact-us.py-5 {
	padding-top: 25px !important;
}
.about-us.py-5 {
	padding-top: 20px !important;
}
.singIn_signUp_area .modal-box, #logIn_area .modal-box {
	padding: 6px 14px;
}
.singIn_signUp_area .close-btn, #logIn_area .close-btn {
	font-size: 25px;
	top: 0px;
} 
#loginForm h3, .ForgotPasswordForm h3, .ForgotEmailOTPForm h3 #resetPasswordForm h3{
	font-size: 18px;
}
#loginForm p {
	line-height: 18px;
}
.singIn_signUp_area label, #logIn_area label {
	font-size: 14px;
}
.singIn_signUp_area .switch-buttons button {
	font-size: 13px;
	text-align: left;
}
.singIn_signUp_area .switch-buttons {
	margin-bottom: 2px;
}
.f-delivery {
	padding: 5px 7px;
	width: 59px;
	top: 24px;
	right: 8px;
	font-size: 12px;
	line-height: 10px;
}
}
@media (min-width: 578px) and  ( max-width: 767px) {
    header .search-bar input {
		width: 100%;
	}
	header .container {
		max-width: 99%;
		margin-left: 17px;
		margin-top: -6px;
	}
	.header-icons {
		display: none;
	}
  .mobile-nav {
		display: flex !important;
	} 
  .menu-btn {
	display: block !important;
    position: absolute;
   }
   header {
	flex-direction: column;
	padding: 15px;
  }
  nav {
	flex-wrap: wrap;
	gap: 15px;
  }
  .zoom-box {
	     display: none !important;
     }
	header {
	flex-direction: column;
	padding: 3px 15px;
   }
   .gallery-container {
	margin-top: 0px;
  }
 .category-container {
	order: 1;
}
.carousel {
	margin-top: 4px;
}
.category-item {
	display: block;
	text-align: center;
}
.sidebar-categories {
	height: unset;
	display: flex;
}
.category-container {
	height: unset;
	width: 95%;
	margin: 20px auto 10px auto;
    box-shadow: unset !important;
}
.arrow {
	display: none;
}
.category-item img {
	width: 40px;
	height: 40px;
}
.category-text {
	font-size: 13px;
}
.category-item {
	padding: 8px;
}
.category-header {
	padding: 5px;
	font-size: 15px;
	font-weight: bold;
}
.sidebar-categories {
	justify-content: center;
}
.category-header {
	text-align: center;
}
.carousel {
	height: 170px;
}
.product-area {
	padding-top: 2px;
	padding-bottom: 2px;
}
.top_products span {
	font-size: 20px;
}
.category-item img {
    margin-right: 0px;
}
.top_title {
	font-size: 12px;
}
.filter-container {
	width: 95%;
	margin: 20px auto 2px auto;
}
header .search-bar {
	width: 96%;
	margin: auto;
	margin-top: 10px;
}
.logo {
	margin-left: 25px;
	display: block;
	width: 100%;
}
.header_container{ 
  display: block;
}
.search-icon {
	padding-bottom: 2px;
}

.mobile-menu {
	display: flex;
}
.filter-container {
	position: unset !important;
}
footer {
	padding-bottom: 30px;
}
.footer-logo {
	text-align: center;
}
.contact-us .bg-img {
	height: 300px;
	width: 95%;
	margin: auto;
	margin-bottom: 10px;
}
.contact-us.py-5 {
	padding-top: 25px !important;
}
.about-us.py-5 {
	padding-top: 20px !important;
}
.search-icon {
	padding: 8px 15px 8px 12px;
	top: 0px;
}
header .search-bar {
	margin-top: 2px;
}
header .logo img {
	width: 80px !important;
	margin-top: 9px;
	margin-bottom: 4px;
}
} 
@media (min-width: 768px) and  ( max-width: 991px) {
	.zoom-box {
	display: none !important;
	}
.logo img {
	width: 83px !important
}
header .header-icons a {
	font-size: 14px;
}
.footer-content h4 {
	font-size: 17px;
}
.contact-us .bg-img {
	background-size: contain;
}
}
@media (min-width: 769px) and  ( max-width: 991px) {
	
}
@media (min-width: 992px) and  ( max-width: 1200px) {
	
} 
@media (min-width: 1201px) {
	
}