body.geekcel-bar-is-visible {
	padding-bottom: 80px !important;
}

.geekcel-bar {
	position: fixed;
	bottom: -100px;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 80px;
	border-top: 1px solid #e0e0e0;
	background: #fff;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
	box-sizing: border-box;
	transition: bottom 0.4s ease-in-out;
}

.geekcel-bar.visible {
	bottom: 0;
}

.geekcel-bar__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 15px;
	box-sizing: border-box;
}

.geekcel-bar__image {
	flex: 0 0 50px;
	margin-right: 15px;
}

.geekcel-bar__image img {
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 4px;
	object-fit: cover;
}

.geekcel-bar__details {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	margin-right: 15px;
	overflow: hidden;
}

.geekcel-bar__title {
	display: -webkit-box;
	max-height: 39px;
	overflow: hidden;
	color: #222;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.geekcel-bar__price {
	margin-top: 2px;
	color: #fd2c56;
	font-size: 14px;
	font-weight: 500;
}

.geekcel-bar__actions {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
}

.geekcel-bar__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-width: 140px;
	padding: 12px 20px;
	border: 1px solid #f2a039;
	border-radius: 4px;
	background: #f2a039 !important;
	color: #fff !important;
	font-size: 15px !important;
	font-weight: 700;
	text-transform: uppercase;
	animation: inflate-every-5s 5s ease-in-out infinite;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.geekcel-cart-icon,
.geekcel-bar__button .sprite-icon {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	fill: #fff;
	vertical-align: text-bottom;
}

.geekcel-bar__button .btn-text {
	line-height: 1;
}

.geekcel-bar__button:hover {
	background: #e49a3d !important;
	transform: translateY(-2px);
	animation-play-state: paused;
}

.geekcel-bar__button.added {
	border-color: #238c3a !important;
	background: #28a745 !important;
}

.geekcel-floating-whatsapp {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 1001;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #25d366;
	color: #fff !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	animation: bounce-every-8s 8s ease-in-out infinite;
	transition: transform 0.2s ease-in-out, bottom 0.4s ease-in-out;
}

.geekcel-floating-whatsapp .sprite-icon,
.geekcel-floating-whatsapp svg {
	width: 32px;
	height: 32px;
}

.geekcel-floating-whatsapp:hover {
	transform: scale(1.1);
	animation-play-state: paused;
}

body.geekcel-bar-is-visible .geekcel-floating-whatsapp {
	bottom: 95px;
}

.configurator.addon-field-error {
	border: 2px solid #d63638;
	border-radius: 5px;
	padding: 15px;
	margin: -15px;
	box-shadow: 0 0 12px rgba(214, 54, 56, 0.4);
	transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
	.geekcel-bar__content {
		padding: 0 10px;
	}

	.geekcel-bar__image,
	.geekcel-bar__details {
		margin-right: 10px;
	}

	.geekcel-bar__title {
		max-height: 36.4px;
		font-size: 14px;
	}

	.geekcel-bar__price {
		font-size: 13px;
	}

	.geekcel-bar__button {
		min-width: 100px;
		padding: 10px 15px;
		font-size: 15px;
	}

	.geekcel-floating-whatsapp {
		right: 15px;
		bottom: 15px;
		width: 55px;
		height: 55px;
	}

	.geekcel-floating-whatsapp .sprite-icon,
	.geekcel-floating-whatsapp svg {
		width: 28px;
		height: 28px;
	}

	body.geekcel-bar-is-visible .geekcel-floating-whatsapp {
		bottom: 90px;
	}
}

@media (max-width: 400px) {
	.geekcel-bar__image {
		display: none;
	}

	.geekcel-bar__button {
		min-width: 90px;
		font-size: 14px;
	}
}

@keyframes bounce-every-8s {
	0%, 15%, 100% {
		transform: translateY(0) scale(1);
	}

	7.5% {
		transform: translateY(-8px) scale(1);
	}
}

@keyframes inflate-every-5s {
	0%, 20%, 100% {
		transform: scale(1);
	}

	10% {
		transform: scale(1.05);
	}
}
