.ghe-sac {
	--ghe-sac-green: var(--dark-green, #265C2C);
	--ghe-sac-gold: #F2CB05;
	--ghe-sac-orange: #F29F05;
	--ghe-sac-bg: #F5F5F5;
	--ghe-sac-border: #e2e2e2;
	--ghe-sac-text: inherit;
}

.ghe-sac .ghe-sac-hidden {
	display: none !important;
}

.ghe-sac .ghe-sac-form {
	background-color: var(--ghe-sac-bg);
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
	margin: 0 80px;
	border-radius: 30px 0 30px 0;
	overflow: hidden;
}

.ghe-sac .ghe-sac-inner {
	padding: 40px 40px 0;
}

.ghe-sac .ghe-sac-label {
	display: block;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 14px;
	color: var(--ghe-sac-text);
}

.ghe-sac .ghe-sac-field {
	margin-bottom: 16px;
}

.ghe-sac .ghe-sac-field label {
	display: inline-block;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--ghe-sac-text);
}

.ghe-sac .ghe-sac-field input {
	display: block;
	width: 120px;
	max-width: 100%;
	box-sizing: border-box;
	border: 2px solid var(--ghe-sac-border) !important;
	border-radius: 3px !important;
	background: #fff;
	padding: 5px;
	margin: 5px 0;
	font-size: 16px;
}

.ghe-sac .ghe-sac-style-picker {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	justify-content: flex-start;
	text-align: center;
	gap: 10px;
	padding-top: 8px;
	color: var(--ghe-sac-green);
}

.ghe-sac .ghe-sac-style-option {
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
	flex: 0 0 auto;
	color: inherit;
	font: inherit;
}

.ghe-sac .ghe-sac-style-option figure {
	margin: 0;
	padding: 5px;
}

.ghe-sac .ghe-sac-style-option img {
	display: block;
	cursor: pointer;
	border: 2px solid transparent;
	margin: 0 auto;
	width: auto;
	max-width: 110px;
	height: auto;
}

.ghe-sac .ghe-sac-style-option.is-selected figure {
	border: 5px solid var(--ghe-sac-green);
	padding: 5px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.ghe-sac .ghe-sac-style-option.is-selected img {
	opacity: 0.9;
}

.ghe-sac .ghe-sac-style-option figcaption {
	text-align: center;
	margin-top: 0;
	padding-top: 0;
	color: inherit;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
}

.ghe-sac .ghe-sac-fields {
	margin-top: 28px;
}

.ghe-sac .ghe-sac-fieldset {
	display: none;
}

.ghe-sac .ghe-sac-fieldset.is-active {
	display: block;
}

.ghe-sac .ghe-sac-button-wrap button {
	width: calc(100% + 80px);
	margin-left: -40px;
	margin-right: -40px;
	text-align: center;
	border-radius: 0 0 30px 0;
	padding: 30px 0;
	border: none;
	cursor: pointer;
	background-color: var(--ghe-sac-green);
	color: #fff;
	font-size: 24px;
	font-weight: 900;
}

.ghe-sac .ghe-sac-button-wrap button:hover,
.ghe-sac .ghe-sac-button-wrap button:focus {
	background-color: var(--ghe-sac-gold);
	color: var(--ghe-sac-green);
}

.ghe-sac .ghe-sac-result {
	text-align: center;
	padding: 30px 20px 10px;
	margin-top: 20px;
}

.ghe-sac .ghe-sac-result-value {
	display: inline-block;
	background-color: var(--ghe-sac-orange);
	color: #ffffff;
	font-size: 30px;
	font-weight: 900;
	border-radius: 30px 0 30px 0;
	padding: 20px;
}

.ghe-sac .ghe-sac-note {
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	padding: 10px 30px 20px;
	margin-top: 0;
}

.ghe-sac .ghe-sac-error {
	display: block;
	color: red;
	font-weight: bold;
	font-size: 20px;
	padding: 30px;
	background-color: #ffe6e6;
	margin-top: 20px;
	text-align: center;
}

@media (max-width: 767px) {
	.ghe-sac .ghe-sac-form {
		margin: 0 15px;
	}

	.ghe-sac .ghe-sac-inner {
		padding: 24px 18px 0;
	}

	.ghe-sac .ghe-sac-style-picker {
		flex-wrap: wrap;
	}

	.ghe-sac .ghe-sac-style-option {
		width: calc(50% - 0.5rem);
	}

	.ghe-sac .ghe-sac-style-option img {
		max-width: 95px;
	}

	.ghe-sac .ghe-sac-button-wrap button {
		width: calc(100% + 36px);
		margin-left: -18px;
		margin-right: -18px;
	}

	.ghe-sac .ghe-sac-result-value {
		font-size: 24px;
		padding: 16px;
	}

	.ghe-sac .ghe-sac-note {
		font-size: 17px;
		padding: 10px 20px 20px;
	}
}