.wholesale-inquiry-section {
	padding: 60px 0;
	background: #ffffff;
}

.wholesale-inquiry-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: stretch;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.wholesale-inquiry-form-wrapper h3 {
	font-size: 32px;
	font-weight: 500;
	color: #1e4e1c;
	margin-bottom: 15px;
}

.wholesale-inquiry-form-wrapper > p {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 30px;
}

.wholesale-inquiry-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.wholesale-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.wholesale-form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wholesale-form-group.full-width {
	grid-column: 1 / -1;
}

.wholesale-form-group label {
	font-size: 11px;
	font-weight: 600;
	color: #1e4e1c;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.wholesale-form-group input,
.wholesale-form-group select,
.wholesale-form-group textarea {
	padding: 12px 15px;
	border: 1px solid #dedede;
	border-radius: 3px;
	font-family: Jost, sans-serif;
	font-size: 14px;
	color: #1e4e1c;
	transition: border-color 0.3s ease;
	background: #ffffff;
}

.wholesale-form-group input:focus,
.wholesale-form-group select:focus,
.wholesale-form-group textarea:focus {
	outline: none;
	border-color: #1e4e1c;
}

.wholesale-form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.wholesale-form-group select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.75 1.5L3.75 4.5L0.75 1.5' stroke='%231e4e1c' stroke-width='1.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
	padding-right: 35px;
}

.wholesale-submit-btn {
	padding: 15px 40px;
	background: #1e4e1c;
	color: #ffffff;
	border: none;
	border-radius: 3px;
	font-family: "DM Sans", sans-serif;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: background 0.3s ease;
	width: fit-content;
}

.wholesale-submit-btn:hover {
	background: #0d2710;
}

.wholesale-inquiry-image-wrapper {
	display: flex;
	flex-direction: column;
}

.wholesale-inquiry-image {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 400px;
	overflow: hidden;
	border-radius: 8px;
}

.wholesale-inquiry-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

@media (max-width: 768px) {
	.wholesale-inquiry-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.wholesale-form-row {
		grid-template-columns: 1fr;
	}
	
	.wholesale-inquiry-form-wrapper h3 {
		font-size: 24px;
	}
}
