.shot-form-wrap {
	max-width: 760px;
	margin: 0 auto;
	font-size: 16px;
	color: #1a1a1a;
}

.shot-fieldset {
	border: none;
	padding: 0;
	margin: 0 0 28px 0;
}

.shot-fieldset h3 {
	font-size: 17px;
	margin: 0 0 12px 0;
	padding-bottom: 8px;
	border-bottom: 2px solid #f0f0f0;
}

.shot-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 18px;
}

.shot-field.shot-full {
	grid-column: 1 / -1;
}

.shot-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 5px;
	font-size: 14px;
}

.shot-form-wrap input[type="text"],
.shot-form-wrap input[type="tel"],
.shot-form-wrap input[type="email"],
.shot-form-wrap input[type="number"],
.shot-form-wrap input[type="date"],
.shot-form-wrap input[type="time"],
.shot-form-wrap select,
.shot-form-wrap textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 16px;
	box-sizing: border-box;
}

.shot-form-wrap select {
	max-width: 320px;
}

.shot-checkbox-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 16px;
}

.shot-checkbox-grid label {
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 6px;
}

.shot-photo-preview {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.shot-photo-preview img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 6px;
	border: 1px solid #ddd;
}

.shot-submit-btn {
	background: #1a1a1a;
	color: #fff;
	border: none;
	padding: 14px 28px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	width: 100%;
}

.shot-submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.shot-form-message {
	padding: 14px 16px;
	border-radius: 8px;
	margin-bottom: 20px;
	font-weight: 500;
}

.shot-form-message-success {
	background: #e6f4ea;
	color: #1e6b34;
	border: 1px solid #b6dfc1;
}

.shot-form-message-error {
	background: #fbe9e7;
	color: #a02b1f;
	border: 1px solid #f3b9b0;
}

@media (max-width: 640px) {
	.shot-grid-2,
	.shot-checkbox-grid {
		grid-template-columns: 1fr;
	}
	.shot-form-wrap select {
		max-width: 100%;
	}
}
