

/* ==========================================================
   ENVÍO GRATIS — BARRA DE PROGRESO
   ========================================================== */

.cc-free-shipping {
	margin: 18px 0;
	padding: 16px 18px;
	background: #f7f7f7;
	border-radius: 8px;
}

.cc-free-shipping__text {
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 1.45;
	color: #222;
}

.cc-free-shipping__text strong {
	font-weight: 700;
}

.cc-free-shipping__bar {
	position: relative;
	width: 100%;
	height: 7px;
	overflow: hidden;
	background: #dedede;
	border-radius: 999px;
}

.cc-free-shipping__progress {
	display: block;
	width: 0;
	height: 100%;
	background: #111;
	border-radius: 999px;
	transition: width .45s ease;
}

.cc-free-shipping__success {
	display: inline-block;
}


/* ==========================================================
   MINI-CARRITO
   ========================================================== */

.cc-free-shipping--mini-cart {
	margin: 14px 0 16px;
	padding: 13px 14px;
}

.cc-free-shipping--mini-cart .cc-free-shipping__text {
	font-size: 13px;
}


/* ==========================================================
   PÁGINA DE PRODUCTO
   ========================================================== */

.cc-free-shipping-product {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	font-size: 13px;
	line-height: 1.4;
}

.cc-free-shipping-product__icon {
	flex: 0 0 auto;
}


/* ==========================================================
   AVISO FLOTANTE
   ========================================================== */

.cc-shipping-toast {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 999999;

	width: min(390px, calc(100vw - 32px));

	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);

	transition:
		opacity .25s ease,
		transform .25s ease,
		visibility .25s ease;

	pointer-events: none;
}

.cc-shipping-toast.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.cc-shipping-toast__inner {
	display: flex;
	align-items: center;
	gap: 13px;

	padding: 16px 18px;

	background: #111;
	color: #fff;

	border-radius: 10px;

	box-shadow:
		0 12px 35px rgba(0, 0, 0, .18);
}

.cc-shipping-toast__icon {
	flex: 0 0 auto;

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

	width: 38px;
	height: 38px;

	font-size: 21px;

	background: rgba(255, 255, 255, .1);
	border-radius: 50%;
}

.cc-shipping-toast__content {
	min-width: 0;
}

.cc-shipping-toast__title {
	margin-bottom: 2px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
}

.cc-shipping-toast__message {
	font-size: 13px;
	line-height: 1.4;
	opacity: .9;
}


/* ==========================================================
   MÓVIL
   ========================================================== */

@media (max-width: 768px) {

	.cc-free-shipping {
		margin: 15px 0;
		padding: 14px 15px;
	}

	.cc-free-shipping__text {
		font-size: 13px;
	}

	.cc-shipping-toast {
		right: 16px;
		bottom: 16px;
		left: 16px;
		width: auto;
	}
}


/* ==========================================================
   SHIPPING BAR — SIDE CART
   ========================================================== */

.cc-sidecart-free-shipping {
	padding: 0 14px 12px;
}

.cc-sidecart-free-shipping .cc-free-shipping {
	margin: 0;
	padding: 12px 14px;
	background: #f7f7f7;
	border-radius: 8px;
}

.cc-sidecart-free-shipping .cc-free-shipping__text {
	font-size: 13px;
	margin-bottom: 8px;
}

.cc-sidecart-free-shipping .cc-free-shipping__bar {
	height: 6px;
}

.cc-sidecart-free-shipping .cc-free-shipping__progress {
	background: #d11f1f;
}