
/* Button styles */
.product-toggle-btn {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--primary);
    border-radius: 6px;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all linear .3s;
}

.product-toggle-btn i {
    margin-right: 8px;
}

/* Selected state styles */
.row.my-2.selected .product-toggle-btn {
    background-color: white;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.product-card {
	width: 100%;
	overflow: hidden;
	position: relative;
	margin-bottom: 25px;
	padding: 15px 18px;
	border-radius: 8px;
	background: var(--white);
	border: 1px solid var(--white);
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s
}

/*
.product-card:hover {
	border-color: var(--primary);
	-webkit-box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.1)
}*/

.product-card:hover .product-widget {
	opacity: 1;
	bottom: 15px
}
/*
.product-card:hover .product-add {
	color: var(--white);
	background: var(--primary)
}*/

.product-media {
	position: relative
}

.product-label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: absolute;
	top: 0px;
	left: 0px
}

.label-text {
	font-size: 14px;
	padding: 5px 8px;
	line-height: 13px;
	border-radius: 3px;
	margin-bottom: 5px;
	color: var(--white);
	text-align: center;
}

.label-text.off {
	background: var(--red)
}

.label-text.new {
	background: var(--green)
}

.label-text.sale {
	background: var(--orange)
}

.label-text.feat {
	background: var(--purple)
}

.label-text.rate {
	background: var(--yellow)
}

.label-text.order {
	background: var(--blue)
}

.product-wish {
	position: absolute;
	top: 2px;
	right: 8px;
	font-size: 30px;
	font-weight: 400!important;
	color: var(--white);
	opacity: .6;
}

.product-wish:hover {
	color: var(--primary);
	opacity: 1;
	font-weight: 900!important;
}

.product-image img {
	width: 100%
}

.product-widget {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	opacity: 0;
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s
}

.product-widget a {
	width: 40px;
	height: 40px;
	font-size: 15px;
	margin: 0px 6px;
	line-height: 40px;
	text-align: center;
	border-radius: 8px;
	color: var(--white);
	background: var(--primary);
	text-shadow: var(-primary-tshadow);
	-webkit-box-shadow: 0px 7px 12px 0px rgba(0, 0, 0, 0.12);
	box-shadow: 0px 7px 12px 0px rgba(0, 0, 0, 0.12)
}

.product-content {
	padding-top: 12px;
	text-align: center;
	/*border-top: 1px solid var(--border)*/
}

.product-content ul {
	min-height: 132px;
}

.product-rating {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 3px
}

.product-rating i,
.product-rating a {
	font-size: 14px;
	margin: 0px 2px;
	color: var(--gray)
}

.product-rating a {
	white-space: nowrap;
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s
}

.product-rating a:hover {
	color: var(--primary);
	text-decoration: underline
}

.product-rating .active {
	color: var(--yellow)
}


.product-name {
	margin-bottom: 20px;
	font-weight: bold;
	line-height: 1.3;
}

.product-name a {
	color: var(--sub-heading);
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s
}

.product-name a:hover {
	color: var(--primary)
}



.product-price {
	min-height: 26px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}

.product-price del {
	color: var(--red);
	margin-right: 8px;
	font-size: 13px;
}

.product-price span {
	color: var(--primary);
	white-space: nowrap
}

.product-price span small {
	font-weight: 400
}

.product-price-offer {
	font-size: 12px;
}

.product-price-offer .price{
	font-size: 14px;
	text-align: left;
	margin-bottom: 13px;
	color: var(--primary);
}

.product-disable {
	position: relative
}

.product-disable:hover {
	border-color: var(--border);
	-webkit-box-shadow: none;
	box-shadow: none
}

.product-disable:hover .product-add {
	color: var(--heading);
	background: var(--border)
}

.product-disable .product-widget {
	visibility: hidden
}

.product-disable::before {
	position: absolute;
	content: "Out of Stock";
	top: 40%;
	left: 50%;
	z-index: 2;
	width: 100%;
	font-size: 15px;
	font-weight: 400;
	padding: 15px 0px;
	text-align: center;
	text-transform: uppercase;
	text-shadow: var(--primary-tshadow);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: var(--white);
	background: rgba(224, 152, 22, 0.9)
}

.product-disable::after {
	position: absolute;
	content: "";
	top: 0px;
	left: 0px;
	z-index: 1;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.6)
}

@media (max-width: 1199px) {

}
@media (max-width: 991px) {

}
@media (max-width: 769px) {

}
@media (max-width: 575px) {
	.product-card {
		padding: 8px;
		margin-bottom: 8px;
		height: initial;
	}

	.product-name {
		font-size: 15px;
		line-height: 22px
	}
}

.buy_form {
	cursor: pointer;
	min-height: 38px;
}