.bk-product-card .bk-card-image-wrap {
	position: relative;
}

.bk-card-quick-add {
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 10px;
	z-index: 20;
	padding: 10px;
	border: 1px solid rgba(244, 63, 94, 0.16);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 12px 32px rgba(17, 24, 39, 0.16);
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.bk-product-card:hover .bk-card-quick-add,
.bk-product-card:focus-within .bk-card-quick-add,
.bk-product-card.bk-quick-open .bk-card-quick-add {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.bk-card-quick-add__title {
	margin-bottom: 7px;
	color: #111827;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.1;
	text-align: center;
}

.bk-card-quick-add__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
}

.bk-card-quick-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 34px;
	padding: 0 10px;
	border: 1.5px solid #e5e7eb;
	border-radius: 9px;
	background: #fff;
	color: #374151;
	cursor: pointer;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.bk-card-quick-btn:hover,
.bk-card-quick-btn:focus-visible {
	border-color: #f43f5e;
	background: #fff1f2;
	color: #be123c;
	outline: none;
	transform: translateY(-1px);
}

.bk-card-quick-btn.is-loading,
.bk-popup-upsell-add.is-loading {
	pointer-events: none;
}

.bk-card-quick-btn.is-loading {
	color: transparent;
	opacity: 1;
}

.bk-card-quick-btn.is-loading::after,
.bk-popup-upsell-add.is-loading::after {
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	border: 2px solid rgba(244, 63, 94, 0.22);
	border-top-color: #f43f5e;
	border-radius: 50%;
	animation: bk-quick-spin 0.55s linear infinite;
}

.bk-card-quick-btn.is-loading::after {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -7.5px;
	margin-left: -7.5px;
}

.bk-popup-upsell-add.is-loading {
	opacity: 1;
}

.bk-popup-upsell-add.is-loading .bk-popup-upsell-add__price {
	opacity: 0;
}

.bk-popup-upsell-add.is-loading::after {
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -7.5px;
}

@keyframes bk-quick-spin {
	to {
		transform: rotate(360deg);
	}
}

.bk-card-quick-toggle {
	border: 0;
	cursor: pointer;
}

.bk-popup-reward,
.bk-popup-shipping-unlocked {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
	padding: 12px 14px;
	border: 1px solid #bbf7d0;
	border-radius: 16px;
	background: #ecfdf5;
	color: #166534;
}

.bk-popup-reward__icon {
	display: flex;
	flex: 0 0 48px;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	overflow: hidden;
	border-radius: 12px;
	background: #fff;
	color: #16a34a;
}

.bk-popup-reward__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bk-popup-reward__copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 2px;
}

.bk-popup-reward__eyebrow {
	color: #16a34a;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.bk-popup-reward__title {
	color: #111827;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.3;
}

.bk-popup-shipping-unlocked {
	margin-bottom: 16px;
	font-size: 14px;
	font-weight: 800;
}

.bk-popup-shipping-unlocked__icon {
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	color: #16a34a;
}

.bk-popup-shipping-upsell {
	margin-bottom: 16px;
	padding: 14px;
	border: 1px solid #fed7aa;
	border-radius: 18px;
	background: #fffbeb;
}

.bk-popup-shipping-upsell__head {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
	color: #92400e;
}

.bk-popup-shipping-upsell__head-icon {
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	margin-top: 1px;
	color: #f59e0b;
}

.bk-popup-shipping-upsell__head strong,
.bk-popup-shipping-upsell__head span {
	display: block;
}

.bk-popup-shipping-upsell__head strong {
	color: #111827;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.25;
}

.bk-popup-shipping-upsell__head span {
	margin-top: 2px;
	color: #92400e;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
}

.bk-popup-shipping-upsell__items {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.bk-popup-upsell-add {
	position: relative;
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 8px;
	border: 1px solid rgba(245, 158, 11, 0.24);
	border-radius: 13px;
	background: #fff;
	color: #111827;
	cursor: pointer;
	text-align: left;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.bk-popup-upsell-add:hover,
.bk-popup-upsell-add:focus-visible {
	border-color: #f59e0b;
	box-shadow: 0 8px 20px rgba(146, 64, 14, 0.12);
	outline: none;
	transform: translateY(-1px);
}

.bk-popup-upsell-add__img {
	display: block;
	width: 44px;
	height: 44px;
	overflow: hidden;
	border-radius: 10px;
	background: #f9fafb;
}

.bk-popup-upsell-add__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bk-popup-upsell-add__body {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 1px;
}

.bk-popup-upsell-add__name {
	overflow: hidden;
	color: #111827;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bk-popup-upsell-add__meta {
	overflow: hidden;
	color: #6b7280;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bk-popup-upsell-add__price {
	color: #be123c;
	font-size: 12px;
	font-weight: 900;
	white-space: nowrap;
}

@media (max-width: 640px) {
	.bk-card-quick-add {
		left: 8px;
		right: 8px;
		bottom: 8px;
		padding: 8px;
	}

	.bk-card-quick-add__title {
		font-size: 11px;
	}

	.bk-card-quick-btn {
		min-width: 38px;
		height: 30px;
		padding: 0 8px;
		font-size: 11px;
	}
}
