.product-item {
	position: relative;
	padding: 16px;
	background: #ffffff;
	border: 1px solid #fbfbfb;
	box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.04);
	border-radius: 16px;
	margin-bottom: 30px;
	transition: box-shadow 0.3s ease-out;
}

.product-item:hover {
	box-shadow: 0px 21px 44px rgba(0, 0, 0, 0.08);
}

.product-item h3 {
	display: block;
	width: 100%;
	font-weight: 600;
	font-size: 18px;
	line-height: 25px;
	text-transform: capitalize;
	color: #333333;
	margin: 0;
}

.product-item figure {
	background: #f9f9f9;
	border-radius: 12px;
	text-align: center;
}

.product-item figure img {
	max-height: 210px;
	height: auto;
}

.product-item .btn-wishlist {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #d8d8d8;
	transition: all 0.3s ease-out;
}

.product-item .btn-wishlist:hover {
	background: rgb(240, 56, 56);
	color: #fff;
}

.product-item .qty {
	font-weight: 400;
	font-size: 13px;
	line-height: 18px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #9d9d9d;
}

.product-item .rating {
	font-weight: 600;
	font-size: 13px;
	line-height: 18px;
	text-transform: capitalize;
	color: #222222;
}

.product-item .rating iconify-icon {
	color: #ffc43f;
}

.product-item .price {
	display: block;
	width: 100%;
	font-weight: 600;
	font-size: 22px;
	line-height: 30px;
	text-transform: capitalize;
	color: #222222;
}

.product-item .product-qty {
	width: 85px;
}

.product-item .btn-link {
	text-decoration: none;
}

.product-item #quantity {
	height: auto;
	width: 28px;
	text-align: center;
	border: none;
	margin: 0;
	padding: 0;
}

.product-item .btn-number {
	width: 26px;
	height: 26px;
	line-height: 1;
	text-align: center;
	background: #ffffff;
	border: 1px solid #e2e2e2;
	border-radius: 6px;
	color: #222;
	padding: 0;
}

/* cart */
.cart .product-qty {
	min-width: 130px;
}

/* Base styling */
/* Reset base tab styles */
.nav-tabs {
	border-bottom: 2px solid #dee2e6;
	gap: 1rem;
}

.nav-tabs .nav-link {
	font-family: "Poppins", sans-serif;
	/* Or any Google Font or custom font */
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #444;
	border: none;
	background: transparent;
	position: relative;
	padding: 0.5rem 1rem;
	transition: all 0.3s ease;
}

/* Underline on hover for all tabs */
.nav-tabs .nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 3px;
	background-color: transparent;
	transition: background-color 0.3s ease;
}

/* Active tab underline and color */
.nav-tabs .nav-link.active {
	color: #198754;
	/* Bootstrap's success green */
	font-weight: 600;
}

.nav-tabs .nav-link.active::after {
	background-color: #198754;
}
