.fsh-auto-sticky-product-bar-shell{
	position:static!important;
	width:0!important;
	height:0!important
}

.fsh-auto-sticky-product-bar{
	position:fixed!important;
	right:0;
	bottom:0;
	left:0;
	z-index:2147483000!important;

	display:flex;
	align-items:center;

	width:100%;
	min-height:72px;

	background:#fff;
	border-top:1px solid #ece7df;
	box-shadow:0 -6px 18px rgba(18,22,28,.10);

	transform:translate3d(0,115%,0);
	opacity:0;
	visibility:hidden;
	pointer-events:none;

	transition:
		transform .30s cubic-bezier(.2,.75,.25,1),
		opacity .22s ease,
		visibility .22s ease
}

.fsh-auto-sticky-product-bar.is-visible{
	transform:translate3d(0,0,0);
	opacity:1;
	visibility:visible;
	pointer-events:auto
}

.fsh-auto-sticky-product-bar__inner{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:28px;

	width:100%;
	max-width:1180px;
	margin-inline:auto;
	padding:10px 28px;

	box-sizing:border-box;
	direction:rtl
}

/* Product side */
.fsh-auto-sticky-product-bar__product{
	display:flex;
	align-items:center;
	gap:12px;
	min-width:0
}

.fsh-auto-sticky-product-bar__image-wrap{
	position:relative;
	flex:0 0 auto
}

.fsh-auto-sticky-product-bar__image{
	display:block;
	width:52px;
	height:52px;

	object-fit:cover;
	border-radius:10px;

	box-shadow:0 3px 10px rgba(0,0,0,.12)
}

.fsh-auto-sticky-product-bar__discount{
	position:absolute;
	top:-8px;
	inset-inline-start:-8px;

	display:inline-flex;
	align-items:center;
	justify-content:center;

	min-width:29px;
	height:20px;
	padding:0 5px;

	border-radius:999px;
	background:#e51f2c;
	color:#fff;

	font-family:Alexandria,sans-serif;
	font-size:10px;
	font-weight:700;
	line-height:1
}

.fsh-auto-sticky-product-bar__info{
	display:flex;
	flex-direction:column;
	gap:5px;
	min-width:0
}

.fsh-auto-sticky-product-bar__title{
	overflow:hidden;
	max-width:300px;

	color:#171a20;
	font-family:Alexandria,sans-serif;
	font-size:16px;
	font-weight:700;
	line-height:1.35;

	text-overflow:ellipsis;
	white-space:nowrap
}

.fsh-auto-sticky-product-bar__prices{
	display:flex;
	align-items:baseline;
	gap:9px;
	direction:rtl
}

.fsh-auto-sticky-product-bar__current-price{
	margin:0;

	color:#e89400;
	font-family:Alexandria,sans-serif;
	font-size:16px;
	font-weight:700;
	line-height:1;

	text-decoration:none;
	white-space:nowrap
}

.fsh-auto-sticky-product-bar__current-price .woocommerce-Price-currencySymbol{
	margin-inline-end:3px
}

.fsh-auto-sticky-product-bar__old-price{
	margin:0;

	color:#73798a;
	font-family:Alexandria,sans-serif;
	font-size:14px;
	font-weight:500;
	line-height:1;

	text-decoration-line:line-through;
	text-decoration-thickness:1.3px;
	white-space:nowrap
}

/* Action side */
.fsh-auto-sticky-product-bar__actions{
	display:flex;
	align-items:center;
	flex:0 0 auto;
	direction:ltr
}

.fsh-auto-sticky-product-bar__action{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:8px;

	width:244px;
	min-height:48px;
	padding:9px 20px;

	border:0;
	border-radius:10px;

	background:#08d000;
	color:#fff;

	font-family:Alexandria,sans-serif;
	font-size:16px;
	font-weight:700;
	line-height:1;

	cursor:pointer;
	box-sizing:border-box;

	transition:
		background .18s ease,
		transform .18s ease,
		box-shadow .18s ease
}

.fsh-auto-sticky-product-bar__action:hover{
	background:#06bc00;
	color:#fff;
	transform:translateY(-1px);
	box-shadow:0 5px 14px rgba(8,208,0,.18)
}

.fsh-auto-sticky-product-bar__action.is-cart{
	background:#e89400
}

.fsh-auto-sticky-product-bar__action.is-cart:hover{
	background:#d88300;
	box-shadow:0 5px 14px rgba(232,148,0,.18)
}

.fsh-auto-sticky-product-bar__action-icon{
	display:flex;
	align-items:center;
	justify-content:center;
	width:20px;
	height:20px
}

.fsh-auto-sticky-product-bar__action-icon svg{
	display:block;
	width:100%;
	height:100%;
	fill:currentColor
}

/* Prevent page content from hiding behind the bottom bar while visible. */
body.fsh-auto-sticky-visible{
	padding-bottom:72px
}

@media(max-width:1024px){
	.fsh-auto-sticky-product-bar__inner{
		max-width:100%;
		padding-inline:18px
	}

	.fsh-auto-sticky-product-bar__action{
		width:210px
	}
}

@media(max-width:767px){
	.fsh-auto-sticky-product-bar{
		min-height:68px
	}

	.fsh-auto-sticky-product-bar__inner{
		gap:10px;
		padding:8px 10px
	}

	.fsh-auto-sticky-product-bar__image{
		width:46px;
		height:46px
	}

	.fsh-auto-sticky-product-bar__product{
		gap:8px
	}

	.fsh-auto-sticky-product-bar__title{
		max-width:128px;
		font-size:12px
	}

	.fsh-auto-sticky-product-bar__prices{
		gap:6px
	}

	.fsh-auto-sticky-product-bar__current-price{
		font-size:12px
	}

	.fsh-auto-sticky-product-bar__old-price{
		font-size:10px
	}

	.fsh-auto-sticky-product-bar__action{
		width:auto;
		min-width:118px;
		min-height:46px;
		padding:8px 13px;
		border-radius:9px;
		font-size:14px
	}

	.fsh-auto-sticky-product-bar__action-icon{
		width:18px;
		height:18px
	}

	body.fsh-auto-sticky-visible{
		padding-bottom:68px
	}
}
