/* Complementary Products Container */
.ymk-complementary-products {
	margin-top: 2em;
	padding: 1.5em;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
}

.ymk-cp-title {
	margin-top: 0;
	margin-bottom: 1em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid #e0e0e0;
}

/* Individual Item */
.ymk-cp-item {
	padding: 0.75em 0;
	border-bottom: 1px solid #f0f0f0;
}

.ymk-cp-item:last-child {
	border-bottom: none;
}

.ymk-cp-item label {
	display: flex;
	align-items: center;
	gap: 0.75em;
	cursor: pointer;
	font-weight: normal;
}

.ymk-cp-checkbox {
	flex-shrink: 0;
}

.ymk-cp-item-image {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
}

.ymk-cp-item-image img {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 3px;
}

.ymk-cp-item-details {
	display: flex;
	flex-direction: column;
	gap: 0.2em;
	flex: 1;
	min-width: 0;
}

.ymk-cp-item-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 0.5em;
}

.ymk-cp-item-price {
	display: flex;
	flex-direction: row;
	align-items: baseline;
	gap: 0.5rem;
	white-space: nowrap;
	flex-shrink: 0;
}

.ymk-cp-item-description p {
	margin: 0;
}

/* Total */
.ymk-cp-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 1em;
	padding-top: 1em;
	border-top: 2px solid #e0e0e0;
}

/* Mobile Add to Cart Button - hidden on desktop, visible on small screens */
.ymk-cp-mobile-add-to-cart {
	/* display: none; */
	width: 100%;
	margin-top: 1em;
	text-align: center;
}

/*
@media ( max-width: 768px ) {
	.ymk-cp-mobile-add-to-cart {
		display: block;
	}
}
*/

/* Notices */
.ymk-cp-notice {
	margin-bottom: 1em;
}
