/* ===========================
   DCB2 Base Engine – Layout
=========================== */

.dcb2-base-wrapper {
	margin-bottom: 25px;
}

/* Medidas */
.dcb2-dimensions-row {
	display: flex;
	gap: 20px;
	margin: 0 auto 20px auto; /* centrado */
}

.dcb2-dimension-field {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.dcb2-dimension-field label {
	font-weight: 600;
	margin-bottom: 8px;
}

.dcb2-dimension-field input,
.dcb2-base-wrapper .dcb2-input {
	width: 100%;
	padding: 10px;
	border: 2px solid #e2e2e2;
	border-radius: 8px;
	transition: 0.2s ease;
	box-sizing: border-box;
}

.dcb2-dimension-field input:focus,
.dcb2-base-wrapper .dcb2-input:focus {
	border-color: #6b46c1;
	outline: none;
}

/* Mobile */
@media (max-width: 768px) {
	.dcb2-dimensions-row {
		flex-direction: column;
		gap: 16px;
		max-width: 100%;
	}
}

/* Fila compra: qty + botón + precio */
.dcb2-atc-row {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	margin-top: 14px;
}

.dcb2-atc-price {
	display: inline-flex;
	flex-direction: column;   
	align-items: center;
	justify-content: center;
	gap: 3px;                
	min-height: 44px;
	padding: 8px 14px;
	border: 1px solid #e6e6e6;
	border-radius: 10px;
	font-weight: 800;
	font-size: 18px;
	white-space: nowrap;
}

.dcb2-price-tax{
  font-size:12px;
  font-weight:600;
  opacity:.75;
  text-align:center;
  margin-top:0;
}

