/* Shipment Protection badge */
.oc-shipment-protection {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.875rem 1rem;
	margin: 0 0.75rem 0.75rem;
	background: #ffffff;
	border: 1px solid #e8e8e8;
	border-radius: 20px;
	font-family: Roboto, sans-serif;
}

.oc-shipment-protection-left {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.oc-shipment-protection-icon {
	width: 16px;
	height: 16px;
	color: #16a34a;
	flex-shrink: 0;
}

.oc-shipment-protection-label {
	font-size: 0.75rem;
	font-weight: 500;
	color: #374151;
	line-height: 1;
}

.oc-shipment-protection-price {
	font-size: 0.875rem;
	font-weight: 600;
	color: #16a34a;
	line-height: 1;
}

.oc-shipment-protection-tooltip-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.oc-shipment-protection-help {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #e5e7eb;
	color: #6b7280;
	font-size: 7px;
	font-weight: 700;
	line-height: 1;
	cursor: help;
}

.oc-shipment-protection-tooltip {
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	margin-bottom: 8px;
	width: 220px;
	padding: 0.5rem 0.75rem;
	background: #111827;
	color: #fff;
	font-size: 11px;
	line-height: 1.5;
	border-radius: 8px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.15s ease;
	pointer-events: none;
	z-index: 50;
}

.oc-shipment-protection-tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 5px solid transparent;
	border-top-color: #111827;
}

.oc-shipment-protection-help:hover + .oc-shipment-protection-tooltip,
.oc-shipment-protection-help:focus + .oc-shipment-protection-tooltip {
	opacity: 1;
	visibility: visible;
}

/* Suggested product card */
.oc-suggested-product {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem;
	margin: 0 0.75rem 0.75rem;
	background: #ffffff;
	border: 1px solid #e8e8e8;
	border-radius: 20px;
	font-family: Roboto, sans-serif;
	transition: opacity 0.15s ease;
}

.oc-suggested-product.oc-added {
	opacity: 0.5;
	pointer-events: none;
}

.oc-suggested-product-image {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	overflow: hidden;
	background: #f5f5f5;
}

.oc-suggested-product-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.oc-suggested-product-info {
	flex: 1;
	min-width: 0;
}

.oc-suggested-product-eyebrow {
	margin: 0 0 0.15rem;
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #16a34a;
	line-height: 1;
}

.oc-suggested-product-name {
	margin: 0 0 0.15rem;
	font-size: 13px;
	font-weight: 600;
	color: #000;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.oc-suggested-product-meta {
	margin: 0;
	font-size: 11px;
	color: #777;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.oc-suggested-product-price {
	font-weight: 600;
	color: #555;
}

.oc-suggested-product-add {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	height: 36px;
	padding: 0 1rem;
	background: #000;
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.15s ease;
}

.oc-suggested-product-add:hover {
	background: rgba(0, 0, 0, 0.9);
}

.oc-suggested-product-add:active {
	background: rgba(0, 0, 0, 0.8);
}

.oc-suggested-product-add:disabled {
	opacity: 0.6;
	cursor: default;
}

.oc-suggested-product-add-spinner {
	display: none;
	width: 12px;
	height: 12px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-top-color: #fff;
	border-radius: 50%;
}

.oc-suggested-product-add.is-loading .oc-suggested-product-add-label {
	display: none;
}

.oc-suggested-product-add.is-loading .oc-suggested-product-add-spinner {
	display: inline-block;
	animation: oc-spin 0.6s linear infinite;
}

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

.oc-suggested-product-dismiss {
	position: absolute;
	top: -6px;
	right: -6px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 50%;
	color: #999;
	cursor: pointer;
	padding: 0;
	transition: color 0.15s ease;
}

.oc-suggested-product-dismiss:hover {
	color: #555;
}
