.gsai-container {
	max-width: 760px;
	margin: 40px auto;
	padding: 40px;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
	font-family: Arial, sans-serif;
}

.gsai-header {
	text-align: center;
	margin-bottom: 30px;
}

.gsai-logo {
	font-size: 48px;
	margin-bottom: 10px;
}

.gsai-header h2 {
	margin: 0 0 10px;
	font-size: 32px;
}

.gsai-header p {
	margin: 0;
	color: #666;
}

/* =========================================
   GiftSession AI Understanding Confirmation
   ========================================= */

.gsai-ai-confirmation {
	margin-bottom: 30px;
	padding: 35px;
	border: 1px solid #e5e5e5;
	border-radius: 18px;
	background: #ffffff;
	text-align: center;
}

.gsai-confirmation-icon {
	font-size: 46px;
	margin-bottom: 10px;
}

.gsai-ai-confirmation h3 {
	margin: 0 0 10px;
	font-size: 28px;
	color: #222222;
}

.gsai-ai-confirmation > p {
	margin-bottom: 25px;
	color: #666666;
}

.gsai-understood-details {
	max-width: 600px;
	margin: 0 auto 25px;
	border: 1px solid #eeeeee;
	border-radius: 12px;
	overflow: hidden;
	text-align: left;
}

.gsai-understood-item {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 15px 18px;
	border-bottom: 1px solid #eeeeee;
	background: #fafafa;
}

.gsai-understood-item:last-child {
	border-bottom: none;
}

.gsai-understood-label {
	font-weight: 600;
	color: #333333;
}

.gsai-understood-value {
	color: #555555;
	text-align: right;
}

.gsai-confirmation-question {
	margin-bottom: 15px;
	font-size: 17px;
	color: #222222;
}

.gsai-confirmation-actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.gsai-confirmation-actions button {
	margin-top: 0;
}

@media (max-width: 600px) {

	.gsai-understood-item {
		display: block;
	}

	.gsai-understood-value {
		margin-top: 5px;
		text-align: left;
	}

	.gsai-confirmation-actions {
		flex-direction: column;
	}

	.gsai-confirmation-actions button {
		width: 100%;
	}

}

.gsai-progress {
	margin-bottom: 35px;
}

.gsai-progress-bar {
	width: 100%;
	height: 8px;
	background: #eeeeee;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 10px;
}

.gsai-progress-fill {
	height: 100%;
	background: #222222;
	border-radius: 20px;
	transition: width 0.3s ease;
}

#gsai-progress-text {
	display: block;
	text-align: right;
	font-size: 13px;
	color: #777;
}

.gsai-step {
	display: none;
}

.gsai-step.active {
	display: block;
}

.gsai-step h3 {
	font-size: 25px;
	margin-bottom: 10px;
}

.gsai-question-description {
	color: #666;
	margin-bottom: 25px;
}

.gsai-options {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.gsai-options button {
	padding: 15px;
	border: 1px solid #dddddd;
	border-radius: 10px;
	color: #222222 !important;
	background: #ffffff;
	cursor: pointer;
	font-size: 15px;
	text-align: left;
	transition: all 0.2s ease;
}

.gsai-options button:hover {
	border-color: #222222;
	color: #ffffff !important;
	background: #222222;
	transform: translateY(-1px);
}

.gsai-options button.selected {
	background: #222222 !important;
	color: #ffffff !important;
	border-color: #222222 !important;
}

.gsai-primary-button,
.gsai-secondary-button {
	display: inline-block;
	margin-top: 25px;
	padding: 14px 24px;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
}

.gsai-primary-button {
	background: #222222;
	color: #ffffff;
}

.gsai-secondary-button {
	background: #eeeeee;
	color: #222222;
}

#gsai-additional-info {
	width: 100%;
	padding: 15px;
	border: 1px solid #dddddd;
	border-radius: 10px;
	resize: vertical;
	font-family: inherit;
	font-size: 15px;
	box-sizing: border-box;
}

.gsai-summary {
	text-align: center;
}

.gsai-success-icon {
	font-size: 50px;
	margin-bottom: 10px;
}

.gsai-summary h3 {
	font-size: 28px;
}

.gsai-summary-item {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 0;
	border-bottom: 1px solid #eeeeee;
	text-align: left;
}

.gsai-summary-item span {
	text-align: right;
	color: #555;
}

@media (max-width: 600px) {

	.gsai-container {
		margin: 20px 10px;
		padding: 25px 18px;
	}

	.gsai-options {
		grid-template-columns: 1fr;
	}

	.gsai-summary-item {
		display: block;
	}

	.gsai-summary-item span {
		display: block;
		margin-top: 5px;
		text-align: left;
	}

}
.gsai-ai-introduction {
	text-align: center;
	margin-bottom: 30px;
	padding: 30px;
	border: 1px solid #eeeeee;
	border-radius: 16px;
	background: #fafafa;
}

.gsai-ai-badge {
	display: inline-block;
	margin-bottom: 15px;
	padding: 7px 14px;
	border-radius: 30px;
	background: #222222;
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
}

.gsai-ai-introduction h3 {
	margin-bottom: 10px;
	font-size: 26px;
}

.gsai-ai-introduction p {
	max-width: 600px;
	margin: 0 auto 20px;
	color: #666666;
}

#gsai-natural-language {
	width: 100%;
	box-sizing: border-box;
	padding: 15px;
	border: 1px solid #dddddd;
	border-radius: 10px;
	font-family: inherit;
	font-size: 15px;
	resize: vertical;
	margin-bottom: 10px;
}

.gsai-ai-status {
	margin-top: 15px;
	padding: 12px;
	border-radius: 8px;
	background: #f0f0f0;
	color: #444444;
	font-size: 14px;
}

.gsai-primary-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}