.gd-buttons-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 1em 0;
}

.gd-download-btn {
	background: #2271b1;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 0.75em 1.4em;
	font-size: 1em;
	cursor: pointer;
	transition: background 0.15s ease;
}

.gd-download-btn:hover {
	background: #135e96;
}

body.gd-modal-open {
	overflow: hidden;
}

.gd-overlay {
	position: fixed;
	inset: 0;
	background-color: rgba( 0, 0, 0, 0.55 );
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2147483647;
	padding: 20px;
	isolation: isolate;
}

.gd-overlay[hidden] {
	display: none;
}

.gd-modal {
	background-color: #fff;
	opacity: 1;
	border-radius: 10px;
	padding: 28px;
	max-width: 480px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	z-index: 1;
	box-shadow: 0 10px 40px rgba( 0, 0, 0, 0.25 );
}

.gd-modal h3 {
	margin-top: 0;
	margin-bottom: 1em;
	padding-right: 24px;
}

.gd-modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	background: none;
	border: none;
	font-size: 1.6em;
	line-height: 1;
	cursor: pointer;
	color: #555;
}

.gd-field {
	margin: 0 0 1em;
}

.gd-field label {
	display: block;
	margin-bottom: 0.35em;
	font-weight: 600;
}

.gd-checkbox-label {
	display: flex !important;
	align-items: flex-start;
	gap: 8px;
	font-weight: 400 !important;
}

.gd-checkbox-label input {
	margin-top: 4px;
}

.gd-field input[type='text'],
.gd-field input[type='email'],
.gd-field input[type='tel'],
.gd-field select,
.gd-field textarea {
	width: 100%;
	padding: 0.6em 0.7em;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 1em;
	box-sizing: border-box;
}

.gd-field textarea {
	min-height: 80px;
	resize: vertical;
}

.gd-submit-btn {
	background: #2271b1;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 0.75em 1.4em;
	font-size: 1em;
	cursor: pointer;
	width: 100%;
}

.gd-submit-btn.gd-loading {
	opacity: 0.7;
	cursor: wait;
}

.gd-form-error {
	background: #fce8e8;
	color: #8a1f1f;
	padding: 0.7em 1em;
	border-radius: 6px;
	margin-bottom: 1em;
}

.gd-form-success {
	background: #eaf6ec;
	color: #1e5c2a;
	padding: 0.9em 1em;
	border-radius: 6px;
}
