.gso-order-widget {
	max-width: 640px;
	margin: 0 auto;
	font-family: inherit;
}

.gso-panel-box {
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	padding: 20px;
	background: #fff;
}

.gso-model-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 14px;
	margin-bottom: 10px;
}

.gso-model-card {
	border: 2px solid #e2e2e2;
	border-radius: 10px;
	padding: 14px;
	text-align: center;
	cursor: pointer;
	background: #fff;
	transition: border-color .12s ease, transform .12s ease;
}

.gso-model-card:hover {
	border-color: #b7b7b7;
	transform: translateY(-2px);
}

.gso-model-card.gso-model-selected {
	border-color: #1d2327;
	box-shadow: 0 0 0 3px rgba(29, 35, 39, .12);
}

.gso-model-card-img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	border-radius: 6px;
	margin-bottom: 10px;
	background: #f6f7f7;
}

.gso-model-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #c3c4c7;
	font-size: 40px;
	background: #f6f7f7;
	border-radius: 6px;
}

/* Cabeçalho da etapa de formulário/transferência: imagem da camiseta ao lado do título/preço */
.gso-order-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 12px;
}

.gso-order-header h3 {
	margin: 0 0 4px;
}

.gso-order-header .gso-price-tag {
	margin: 0;
}

.gso-order-model-img {
	width: 96px;
	height: 96px;
	object-fit: cover;
	border-radius: 8px;
	flex-shrink: 0;
	background: #f6f7f7;
}

.gso-order-model-img.gso-model-placeholder {
	font-size: 34px;
}

.gso-model-title {
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 4px;
}

.gso-model-price {
	font-weight: 700;
	color: #1a7a2e;
}

.gso-size-chart-title {
	font-size: 15px;
	font-weight: 700;
	margin: 18px 0 4px;
}

.gso-size-chart-tip {
	font-size: 13px;
	color: #b32d2e;
	margin-bottom: 10px;
}

.gso-size-chart {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 6px;
	font-size: 13px;
}

.gso-size-chart-tolerance {
	font-size: 12px;
	color: #666;
	text-align: center;
	margin: 0 0 18px;
}

.gso-size-chart th,
.gso-size-chart td {
	border: 1px solid #e2e2e2;
	padding: 8px 10px;
	text-align: center;
}

.gso-size-chart th {
	background: #f6f7f7;
	font-weight: 700;
}

.gso-order-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.gso-order-form label {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 13px;
	color: #444;
}

.gso-order-form input,
.gso-order-form select {
	height: 40px;
	border: 1px solid #d5d5d5;
	border-radius: 6px;
	padding: 0 12px;
	font-size: 14px;
}

.gso-price-tag {
	font-size: 22px;
	font-weight: 700;
	margin: 4px 0 6px;
}

.gso-btn {
	display: inline-block;
	text-decoration: none;
	border-radius: 6px;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	border: 1px solid #ccc;
	background: #fff;
	color: #1d2327;
}

.gso-btn-primary {
	background: #1d2327;
	color: #fff;
	border-color: #1d2327;
}

.gso-btn-primary[disabled] {
	opacity: .6;
	cursor: not-allowed;
}

.gso-btn-link {
	background: transparent;
	border: none;
	color: #666;
	text-decoration: underline;
	padding: 4px 0;
	font-weight: 500;
	font-size: 13px;
	cursor: pointer;
}

.gso-form-error {
	color: #c0392b;
	font-size: 13px;
}

.gso-transfer-box {
	background: #f7f7f8;
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	padding: 14px 16px;
	font-size: 14px;
	white-space: pre-line;
	color: #333;
	margin-bottom: 16px;
}

.gso-transfer-help {
	font-size: 13px;
	color: #666;
	margin-bottom: 14px;
}

.gso-file-input-wrap {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 16px;
}

.gso-file-input-wrap label {
	font-size: 13px;
	color: #444;
}

.gso-file-input-wrap input[type="file"] {
	border: 1px dashed #cfcfcf;
	border-radius: 6px;
	padding: 10px;
	font-size: 13px;
	background: #fafafa;
}

.gso-proof-success {
	background: #edfaef;
	border: 1px solid #bfe6c9;
	color: #1a7a2e;
	border-radius: 8px;
	padding: 16px;
	font-size: 14px;
}

.gso-proof-success strong {
	display: block;
	margin-bottom: 4px;
	font-size: 15px;
}

.gso-proof-auto {
	background: #eaf6ec;
	border-color: #9bd6a8;
}

@media (max-width: 480px) {
	.gso-model-grid {
		grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	}
}
