/* DHUKR combo banner on /cart/ */

.dhukr-combo-banner {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 24px;
	font-size: 16px;
	line-height: 1.4;
}

.dhukr-combo-banner__success,
.dhukr-combo-banner__nudge {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 18px;
	border-radius: 8px;
	border: 1px solid transparent;
}

.dhukr-combo-banner__success {
	background: #ecfdf5;
	border-color: #a7f3d0;
	color: #065f46;
}

.dhukr-combo-banner__nudge {
	background: #fffbeb;
	border-color: #fcd34d;
	color: #78350f;
	flex-wrap: wrap;
}

.dhukr-combo-banner__nudge--secondary {
	background: #fefce8;
	border-color: #fde68a;
	padding: 10px 16px;
	font-size: 14px;
	opacity: 0.92;
}

.dhukr-combo-banner__nudge--secondary .dhukr-combo-banner__suggest img {
	width: 48px;
	height: 48px;
}

.dhukr-combo-banner__icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #10b981;
	color: #fff;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.dhukr-combo-banner__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1 1 240px;
	min-width: 0;
}

.dhukr-combo-banner__sub {
	font-size: 13px;
	opacity: 0.85;
}

.dhukr-combo-banner__step {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	font-weight: 500;
}

.dhukr-combo-banner__path-discount {
	display: inline-block;
	background: #15803d;
	color: #fff;
	padding: 3px 9px;
	border-radius: 4px;
	font-weight: 700;
	font-size: 20px;
	flex-shrink: 0;
}

.dhukr-combo-banner__step-text {
	flex: 1 1 auto;
	min-width: 0;
}

.dhukr-combo-banner__suggestions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	flex: 0 0 auto;
}

.dhukr-combo-banner__suggest {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 8px 10px;
	background: #fff;
	border: 1px solid #fcd34d;
	border-radius: 6px;
	color: #78350f;
	text-decoration: none;
	min-width: 96px;
	max-width: 120px;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.dhukr-combo-banner__suggest:hover,
.dhukr-combo-banner__suggest:focus {
	border-color: #b45309;
	box-shadow: 0 1px 4px rgba(180, 83, 9, 0.15);
	color: #78350f;
	text-decoration: none;
}

.dhukr-combo-banner__suggest img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 4px;
	margin: 0;
}

.dhukr-combo-banner__suggest-name {
	font-size: 12px;
	font-weight: 500;
	text-align: center;
	line-height: 1.2;
}

.dhukr-combo-banner__suggest-cta {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-weight: 600;
	color: #b45309;
}

@media (max-width: 640px) {

	.dhukr-combo-banner__success,
	.dhukr-combo-banner__nudge {
		padding: 12px 14px;
	}

	.dhukr-combo-banner__suggestions {
		width: 100%;
	}
}

/* Cross-sells banner — replaces the default WC widget that sat in
   .cart-collaterals; renders full-width between cart table and totals. */

.dhukr-cross-sells {
	margin: 8px 0 28px;
	padding: 18px 20px;
	background: #eff6ff;
	border: 1px solid #93c5fd;
	border-radius: 8px;
}

.dhukr-cross-sells__header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
}

.dhukr-cross-sells__icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #2563eb;
	color: #fff;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	line-height: 1;
}

.dhukr-cross-sells__title {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	color: #1e3a8a;
	line-height: 1.2;
	margin-bottom: 0 !important;
}

.dhukr-cross-sells__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 10px;
}

.dhukr-cross-sells__item {
	/* display: flex;
	align-items: center;
	gap: 12px; */
	padding: 10px 12px;
	background: #fff;
	border: 1px solid #bfdbfe;
	border-radius: 6px;
	transition: border-color 0.15s, box-shadow 0.15s;
	margin: 0;
}

.dhukr-cross-sells__item:hover {
	border-color: #2563eb;
	box-shadow: 0 1px 6px rgba(37, 99, 235, 0.15);
}

.dhukr-cross-sells__image {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	display: block;
	margin-bottom: 12px;
}

.dhukr-cross-sells__image img {
	width: 56px;
	height: 56px;
	object-fit: cover;
	border-radius: 4px;
	margin: 0;
	display: block;
}

.dhukr-cross-sells__body {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.dhukr-cross-sells__name {
	font-size: 16px;
	font-weight: 600;
	color: #1e3a8a;
	text-decoration: none;
	line-height: 1.3;
	overflow-wrap: anywhere;
}

.dhukr-cross-sells__name:hover,
.dhukr-cross-sells__name:focus {
	color: #1e40af;
	text-decoration: underline;
}

.dhukr-cross-sells__price {
	font-size: 18px;
	color: #475569;
	margin-bottom: 10px;
}

.dhukr-cross-sells__price .amount {
	color: #1e3a8a;
	font-weight: 600;
}

.dhukr-cross-sells__action {
	flex-shrink: 0;
}

.dhukr-cross-sells__action .button,
.dhukr-cross-sells__action .added_to_cart {
	background: #2563eb;
	color: #fff;
	border: none;
	padding: 8px 14px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	line-height: 1.2;
	transition: background-color 0.15s;
	white-space: nowrap;
}

.dhukr-cross-sells__action .button:hover,
.dhukr-cross-sells__action .button:focus,
.dhukr-cross-sells__action .added_to_cart:hover {
	background: #1d4ed8;
	color: #fff;
}

.dhukr-cross-sells__action .added_to_cart {
	margin-left: 6px;
	background: #15803d;
}

.dhukr-cross-sells__action .added_to_cart:hover {
	background: #166534;
}

@media (max-width: 640px) {

	.dhukr-cross-sells {
		padding: 14px;
	}

	.dhukr-cross-sells__list {
		grid-template-columns: 1fr;
	}
}