.aex-accesorios-wrap {
	margin: 24px 0;
}

.aex-titulo {
	font-size: 1.1em;
	margin-bottom: 12px;
}

.aex-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 16px;
	margin-bottom: 16px;
}

.aex-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	border: 2px solid #e0e0e0;
	border-radius: 6px;
	padding: 12px;
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.aex-card.aex-selected {
	border-color: #1abc9c;
	background-color: #f3fdfb;
}

.aex-card .aex-checkbox {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.aex-check-icon {
	position: absolute;
	top: -10px;
	right: -10px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #1abc9c;
	color: #fff;
	font-size: 13px;
	line-height: 22px;
	text-align: center;
	opacity: 0;
	transform: scale(0.6);
	transition: opacity 0.15s ease, transform 0.15s ease;
}

.aex-card.aex-selected .aex-check-icon {
	opacity: 1;
	transform: scale(1);
}

.aex-imagen img {
	width: 56px;
	height: 56px;
	object-fit: contain;
}

.aex-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.aex-nombre {
	font-weight: 600;
}

.aex-codigo {
	font-size: 0.8em;
	color: #888;
}

.aex-precio {
	font-weight: 700;
}

.aex-resumen {
	width: 100%;
	max-width: 480px;
	border-collapse: collapse;
}

.aex-resumen th,
.aex-resumen td {
	border: 1px solid #e0e0e0;
	padding: 10px 14px;
	text-align: left;
}

.aex-resumen th {
	background: #f7f7f7;
	font-weight: 700;
}

.aex-resumen tr:last-child th,
.aex-resumen tr:last-child td {
	background: #f7f7f7;
	font-weight: 700;
}
