.modal-buy{
	border-radius: 10px;
	border: none;
}

.modal-buy .modal-header{
	border-bottom: 1px solid #eee;
}

.modal-buy .modal-title{
	font-weight: 600;
}

.modal-buy .product-name{
	display: block;
	font-size: 13px;
	color: #666;
	margin-top: 4px;
}

/* cantidades */

.buy-quantity{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 15px;
}

.buy-quantity label{
	font-size: 12px;
	font-weight: 600;
	color: #666;
}

/* botón principal */

.buy-btn{
	margin-top: 10px;
	font-weight: 600;
}

/* mensaje */

.buy-message{
	font-size: 13px;
	margin-top: 10px;
	text-align: center;
}

/* tabla precios */

.price-table{
	margin-top: 20px;
}

.price-table h6{
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #555;
}

.price-table table{
	font-size: 13px;
	margin-bottom: 0;
}

/* responsive */

@media (max-width: 576px){

	.buy-quantity{
		grid-template-columns: 1fr;
	}

}