.gc-quiz {
	max-width: 640px;
	margin: 2rem auto;
	padding: 2.5rem;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	font-family: inherit;
}

.gc-quiz__progress {
	height: 6px;
	background: #f0ece6;
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 2rem;
}

.gc-quiz__progress-bar {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, #c9a86a, #a9825a);
	transition: width 0.3s ease;
}

.gc-step__title {
	font-size: 1.35rem;
	font-weight: 600;
	margin: 0 0 1.5rem;
	color: #2b2420;
	text-align: center;
}

.gc-step--shake {
	animation: gc-shake 0.4s ease;
}

@keyframes gc-shake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-6px); }
	75% { transform: translateX(6px); }
}

.gc-choice-row {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.gc-choice-row--multi {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.gc-choice {
	padding: 0.9rem 1.2rem;
	border: 2px solid #e8e1d7;
	background: #fbf9f6;
	border-radius: 10px;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.15s ease;
	color: #2b2420;
	text-align: center;
}

.gc-choice:hover {
	border-color: #c9a86a;
}

.gc-choice--selected {
	background: #2b2420;
	border-color: #2b2420;
	color: #fff;
}

.gc-note-text {
	margin-top: 1.25rem;
}

.gc-note-text textarea {
	width: 100%;
	border-radius: 10px;
	border: 2px solid #e8e1d7;
	padding: 0.9rem;
	font-family: inherit;
	font-size: 0.95rem;
	resize: vertical;
}

.gc-quiz__nav {
	display: flex;
	justify-content: space-between;
	margin-top: 2rem;
	gap: 1rem;
}

.gc-btn {
	padding: 0.85rem 1.75rem;
	border-radius: 10px;
	font-size: 1rem;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: opacity 0.15s ease;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.gc-btn--primary {
	background: #2b2420;
	color: #fff;
	margin-left: auto;
}

.gc-btn--primary:hover {
	opacity: 0.85;
	color: #fff;
}

.gc-btn--ghost {
	background: transparent;
	color: #2b2420;
	border: 2px solid #e8e1d7;
}

.gc-btn--ghost:hover {
	border-color: #c9a86a;
}

.gc-loading {
	text-align: center;
	padding: 3rem 1rem;
}

.gc-spinner {
	width: 40px;
	height: 40px;
	margin: 0 auto 1.25rem;
	border: 4px solid #f0ece6;
	border-top-color: #c9a86a;
	border-radius: 50%;
	animation: gc-spin 0.8s linear infinite;
}

@keyframes gc-spin {
	to { transform: rotate(360deg); }
}

.gc-results__title {
	text-align: center;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}

.gc-results__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 1.25rem;
	margin-bottom: 1.75rem;
}

.gc-card {
	border: 1px solid #eee;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	background: #fff;
}

.gc-card__image-link {
	display: block;
}

.gc-card__image {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}

.gc-card__body {
	padding: 0.9rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	flex: 1;
}

.gc-card__name {
	font-size: 0.92rem;
	font-weight: 600;
	color: #2b2420;
	text-decoration: none;
	line-height: 1.3;
}

.gc-card__price {
	font-size: 0.9rem;
	color: #6b6259;
}

.gc-card__add {
	margin-top: auto;
	padding: 0.6rem 0.9rem;
	font-size: 0.85rem;
}

.gc-error {
	text-align: center;
	padding: 2rem 1rem;
}

@media (max-width: 480px) {
	.gc-quiz {
		padding: 1.5rem;
		margin: 1rem;
	}
	.gc-choice-row--multi {
		grid-template-columns: 1fr;
	}
}
