/* WBK Booking - Woost ��Ų ��Ÿ�� */

/* ��ü ���� */
.wbk-booking-item-list-wrap {
	width: 100%;
	margin: 0 auto;
	padding: 20px;
}

/* ī�װ��� �� */
.wbk-category-tabs-wrap {
	margin-bottom: 30px;
}

.wbk-category-tabs {
	display: flex;
	gap: 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	justify-content: center;
}

.wbk-tab {
	display: inline-block;
	padding: 12px 20px;
	text-decoration: none;
	color: #666;
	font-weight: 500;
	white-space: nowrap;
	border-bottom: 2px solid #2c5530;
	transition: all 0.3s ease;
}

.wbk-tab:hover {
	color: #2c5530;
	text-decoration: none;
}

.wbk-tab.active {
	color: #fff;
	font-weight: 600;
	border-bottom-color: #2c5530;
	background: #2c5530;
}

/* ��ǰ �׸��� */
.wbk-booking-item-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

/* ���� ī�� */
.wbk-booking-item-card {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.wbk-booking-item-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	border-color: #d0d0d0;
}

.wbk-booking-item-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.wbk-booking-item-link:hover {
	text-decoration: none;
	color: inherit;
}

/* �̹��� ���� */
.wbk-booking-item-image {
	position: relative;
	width: 100%;
	aspect-ratio: 1;
	overflow: hidden;
	background: #f8f8f8;
}

.wbk-booking-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.wbk-booking-item-card:hover .wbk-booking-item-image img {
	transform: scale(1.05);
}

.wbk-booking-item-no-image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
	color: #999;
	font-size: 14px;
}

/* ī�װ��� ���� */
.wbk-booking-item-category-badge {
	position: absolute;
	top: 8px;
	left: 8px;
	background: rgba(44, 85, 48, 0.9);
	color: white;
	padding: 4px 8px;
	border-radius: 0;
	font-size: 12px;
	font-weight: 500;
}

/* ������ ���� */
.wbk-booking-item-content {
	padding: 16px;
}

.wbk-booking-item-title {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 8px 0;
	color: #333;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.wbk-booking-item-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.4;
	margin: 0 0 12px 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ���� ���� */
.wbk-booking-item-price-section {
	margin-top: auto;
}

.wbk-booking-item-prices {
	margin-bottom: 8px;
}

.wbk-regular-price {
	font-size: 16px;
	font-weight: 600;
	color: #333;
}

.wbk-regular-price.has-sale {
	font-size: 14px;
	color: #999;
	text-decoration: line-through;
	font-weight: 400;
	margin-right: 8px;
}

.wbk-sale-price {
	font-size: 18px;
	font-weight: 700;
}

.wbk-origin-info {
	font-size: 12px;
	color: #888;
	margin-top: 4px;
}

/* �� ��ǰ �޽��� */
.wbk-booking-no-items {
	text-align: center;
	padding: 60px 20px;
	color: #666;
}

.wbk-booking-no-items p {
	font-size: 16px;
	margin-bottom: 20px;
}

.wbk-reset-filter {
	display: inline-block;
	padding: 10px 20px;
	background: #2c5530;
	color: white;
	text-decoration: none;
	border-radius: 0;
	font-weight: 500;
	transition: background 0.3s ease;
}

.wbk-reset-filter:hover {
	background: #1e3a21;
	text-decoration: none;
	color: white;
}

/* ���������̼� */
.wbk-booking-pagination {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.wbk-booking-pagination .page-numbers {
	display: inline-block;
	padding: 8px 12px;
	margin: 0 4px;
	text-decoration: none;
	color: #666;
	border: 1px solid #ddd;
	border-radius: 0;
	transition: all 0.3s ease;
}

.wbk-booking-pagination .page-numbers:hover,
.wbk-booking-pagination .page-numbers.current {
	background: #2c5530;
	color: white;
	border-color: #2c5530;
}

/* ������ ������ */
@media (max-width: 1024px) {
	.wbk-booking-item-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}

	.wbk-booking-item-list-wrap {
		padding: 16px;
	}
}

@media (max-width: 768px) {
	.wbk-booking-item-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.wbk-booking-item-content {
		padding: 12px;
	}

	.wbk-booking-item-title {
		font-size: 14px;
	}

	.wbk-regular-price {
		font-size: 14px;
	}

	.wbk-sale-price {
		font-size: 16px;
	}

	.wbk-category-tabs {
		padding: 0 4px;
	}

	.wbk-tab {
		padding: 10px 16px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.wbk-booking-item-list-wrap {
		padding: 12px;
	}

	.wbk-booking-item-grid {
		gap: 10px;
	}

	.wbk-booking-item-content {
		padding: 10px;
	}

	.wbk-tab {
		padding: 8px 12px;
		font-size: 13px;
	}
}

/* ========================================
   ��ǰ �������� ��Ÿ��
   ======================================== */

/* �������� ��ü ���� */
.wbk-booking-detail-wrap {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ���: �̹��� + ���� ���� */
.wbk-booking-detail-main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

/* ���� �̹��� ���� */
.wbk-booking-detail-image-section {
	position: sticky;
	top: 20px;
	height: fit-content;
}

.wbk-booking-detail-image {
	width: 100%;
	aspect-ratio: 1;
	background: #f8f8f8;
	border-radius: 0;
	overflow: hidden;
	margin-bottom: 16px;
}

.wbk-booking-detail-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wbk-booking-detail-no-image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
	color: #999;
	font-size: 16px;
}

/* ������ ����� */
.wbk-booking-detail-gallery-thumbs {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.wbk-gallery-thumb {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: 0;
	overflow: hidden;
	border: 2px solid transparent;
	cursor: pointer;
	transition: border-color 0.3s ease;
}

.wbk-gallery-thumb:hover,
.wbk-gallery-thumb.active {
	border-color: #2c5530;
}

.wbk-gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ���� ��ǰ ���� ���� */
.wbk-booking-detail-info {
	padding: 20px 0;
}

.wbk-booking-detail-title {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	color: #333;
	margin: 0 0 16px 0;
}

/* ������ ���� */
.wbk-booking-detail-discount {
	margin-bottom: 16px;
}

.discount-badge {
	background: #e74c3c;
	color: white;
	padding: 6px 12px;
	border-radius: 0;
	font-size: 14px;
	font-weight: 600;
}

/* ���� ���� */
.wbk-booking-detail-price {
	margin-bottom: 20px;
}

.price-section {
	display: flex;
	align-items: center;
	gap: 12px;
}

.regular-price {
	font-size: 18px;
	color: #999;
	text-decoration: line-through;
}

.sale-price {
	font-size: 28px;
	font-weight: 700;
	color: #e74c3c;
}

.current-price {
	font-size: 28px;
	font-weight: 700;
	color: #333;
}

/* ������ ���� */
.wbk-booking-detail-origin {
	padding: 12px 0;
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
}

.origin-label {
	font-weight: 600;
	color: #666;
	margin-right: 8px;
}

.origin-value {
	color: #333;
}

/* ��ǰ ���� */
.wbk-booking-detail-desc {
	margin-bottom: 30px;
	padding: 16px;
	background: #f9f9f9;
	border-radius: 0;
}

.wbk-booking-detail-desc p {
	margin: 0;
	color: #666;
	line-height: 1.6;
}

/* �����ϱ� ��ư */
.wbk-booking-detail-actions {
	margin-bottom: 20px;
}

.wbk-booking-inquiry-btn {
	width: 100%;
	padding: 16px;
	background: #2c5530;
	color: white;
	border: none;
	border-radius: 0;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	letter-spacing: 0.02em;
	position: relative;
	overflow: hidden;
}

.wbk-booking-inquiry-btn::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.5s ease;
}

.wbk-booking-inquiry-btn:hover {
	background: #1e3a21;
}

.wbk-booking-inquiry-btn:hover::after {
	left: 100%;
}

/* ��� �������� */
.wbk-booking-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 20px;
	box-sizing: border-box;
}

/* ��� �����̳� */
.wbk-booking-modal {
	max-width: 600px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	background: white;
	border-radius: 0;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	animation: modalFadeIn 0.3s ease-out;
	outline: none;
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
		transform: scale(0.9) translateY(-20px);
	}

	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

/* ���� �� */
.wbk-booking-form-wrap {
	padding: 30px;
	background: white;
	border-radius: 0;
}

.wbk-booking-form-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid #ddd;
}

.wbk-booking-form-header h3 {
	margin: 0;
	font-size: 18px;
	color: #333;
}

.wbk-form-close {
	background: #f5f5f5;
	border: none;
	font-size: 20px;
	color: #666;
	cursor: pointer;
	padding: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0;
	transition: all 0.3s ease;
}

.wbk-form-close:hover {
	background: #e0e0e0;
	color: #333;
}

/* �ϴ� �� ���� ���� */
.wbk-booking-detail-description {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 2px solid #2c5530;
	position: relative;
}

.wbk-booking-detail-description::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 0;
	width: 60px;
	height: 2px;
	background: #2c5530;
}

.wbk-booking-detail-description h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 24px;
	color: #2c5530;
	letter-spacing: -0.02em;
	position: relative;
	padding-left: 16px;
}

.wbk-booking-detail-description h3::before {
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	width: 4px;
	height: 20px;
	background: #2c5530;
	border-radius: 0;
}

.wbk-booking-detail-content {
	margin-bottom: 0;
	padding-bottom: 32px;
	border-bottom: 1px solid #eee;
}

/* ����Ʈ content ��Ÿ�� */
.wbk-product-content {
	line-height: 1.8;
	color: #333;
	display: flow-root;
}

.wbk-product-content img {
	width: auto;
	height: auto;
	border-radius: 0;
}

/*
 * WordPress 에디터 이미지 정렬 (클래스 기준)
 * - aligncenter / alignleft / alignright / alignnone + wp-image-*(미디어 ID, 정렬과 무관)
 * - 클래식: p.wp-caption, img 직접 / 블록: figure.wp-block-image
 */
.wbk-product-content img.aligncenter,
.wbk-product-content img[class*='wp-image-'].aligncenter,
.wbk-product-content p.aligncenter img,
.wbk-product-content .wp-caption.aligncenter img,
.wbk-product-content figure.aligncenter img,
.wbk-product-content .wp-block-image.aligncenter img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	height: auto;
}

.wbk-product-content figure.aligncenter,
.wbk-product-content .wp-caption.aligncenter {
	margin-left: auto;
	margin-right: auto;
}

.wbk-product-content img.alignleft,
.wbk-product-content img[class*='wp-image-'].alignleft,
.wbk-product-content .wp-caption.alignleft img,
.wbk-product-content figure.alignleft img,
.wbk-product-content .wp-block-image.alignleft img {
	float: left;
	margin: 0 1em 1em 0;
	max-width: 100%;
	height: auto;
}

.wbk-product-content figure.alignleft,
.wbk-product-content .wp-caption.alignleft {
	float: left;
	margin: 0 1em 1em 0;
}

.wbk-product-content img.alignright,
.wbk-product-content img[class*='wp-image-'].alignright,
.wbk-product-content .wp-caption.alignright img,
.wbk-product-content figure.alignright img,
.wbk-product-content .wp-block-image.alignright img {
	float: right;
	margin: 0 0 1em 1em;
	max-width: 100%;
	height: auto;
}

.wbk-product-content figure.alignright,
.wbk-product-content .wp-caption.alignright {
	float: right;
	margin: 0 0 1em 1em;
}

.wbk-product-content img.alignnone,
.wbk-product-content img[class*='wp-image-'].alignnone {
	float: none;
	max-width: 100%;
	height: auto;
}

.wbk-product-content h1:has(> img:only-child),
.wbk-product-content h2:has(> img:only-child),
.wbk-product-content h3:has(> img:only-child),
.wbk-product-content h4:has(> img:only-child),
.wbk-product-content h5:has(> img:only-child),
.wbk-product-content h6:has(> img:only-child) {
	display: flex;
	justify-content: center;
}

.wbk-product-content p {
	margin-bottom: 16px;
}

.wbk-product-content h1,
.wbk-product-content h2,
.wbk-product-content h3,
.wbk-product-content h4,
.wbk-product-content h5,
.wbk-product-content h6 {
	margin-top: 24px;
	margin-bottom: 12px;
	font-weight: 600;
	color: #333;
}

.wbk-product-content ul,
.wbk-product-content ol {
	margin-bottom: 16px;
	padding-left: 20px;
}

.wbk-product-content li {
	margin-bottom: 8px;
}

.wbk-product-content blockquote {
	border-left: 4px solid #2c5530;
	margin: 16px 0;
	padding: 12px 16px;
	background: #f9f9f9;
	font-style: italic;
}

.wbk-product-content table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 16px;
}

.wbk-product-content table th,
.wbk-product-content table td {
	border: 1px solid #ddd;
	padding: 8px 12px;
	text-align: left;
}

.wbk-product-content table th {
	background: #f8f8f8;
	font-weight: 600;
}

.wbk-no-detail-content {
	text-align: center;
	padding: 60px 20px;
	background: #f8f8f8;
	border-radius: 0;
	color: #999;
}

/* 요약 설명 */
.wbk-booking-detail-summary {
	margin-top: 32px;
	padding: 24px 28px;
	background: #f8f9fa;
	position: relative;
}

.wbk-booking-detail-info .wbk-booking-detail-summary {
	margin-top: 24px;
	margin-bottom: 24px;
	padding: 20px 24px;
}

.wbk-booking-detail-summary p {
	margin: 0;
	color: #555;
	line-height: 1.8;
	font-size: 15px;
	letter-spacing: -0.01em;
}

.wbk-booking-detail-summary h1,
.wbk-booking-detail-summary h2 {
	margin: 16px 0 8px;
	color: #2c5530;
	font-weight: 700;
	line-height: 1.6;
}

.wbk-booking-detail-summary h1 {
	font-size: 20px;
}

.wbk-booking-detail-summary h2 {
	font-size: 16px;
	color: #333;
}

.wbk-booking-detail-summary img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
	margin: 12px auto;
}

/* �߰� ���� */
.wbk-booking-detail-fields h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 16px;
	color: #333;
}

.wbk-detail-fields-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.wbk-field-row {
	display: flex;
	padding: 12px 16px;
	background: #f9f9f9;
	border-radius: 0;
	border-left: 3px solid #2c5530;
}

.field-label {
	font-weight: 600;
	color: #666;
	min-width: 120px;
	margin-right: 16px;
}

.field-value {
	color: #333;
}

/* �������� ������ */
@media (max-width: 768px) {
	.wbk-booking-detail-main {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.wbk-booking-detail-image-section {
		position: static;
	}

	.wbk-booking-detail-title {
		font-size: 20px;
	}

	.sale-price,
	.current-price {
		font-size: 24px;
	}

	.wbk-booking-inquiry-btn {
		font-size: 16px;
		padding: 14px;
	}

	.wbk-booking-detail-wrap {
		padding: 16px;
	}

	/* ����� ��� ��Ÿ�� */
	.wbk-booking-modal-overlay {
		padding: 10px;
	}

	.wbk-booking-modal {
		max-width: 100%;
		max-height: 95vh;
		border-radius: 0;
	}

	.wbk-booking-form-wrap {
		padding: 20px;
	}

	.wbk-booking-form-header h3 {
		font-size: 16px;
	}

	.wbk-booking-detail-summary {
		margin-top: 24px;
		padding: 16px 20px;
	}

	.wbk-booking-detail-info .wbk-booking-detail-summary {
		margin-bottom: 20px;
	}

	.wbk-booking-detail-summary p {
		font-size: 14px;
	}

	.wbk-booking-detail-description h3 {
		font-size: 18px;
	}

	.wbk-booking-detail-description::before {
		width: 40px;
	}
}

/* ========================================
   �� ��Ÿ�� (2�� �׸��� ���̾ƿ�)
   ======================================== */

.wbk-booking-form {
	display: grid;
	gap: 0;
	max-width: 100%;
	overflow: hidden;
}

/* �� �ʵ� �⺻ ���� */
.wbk-form-field {
	display: grid;
	grid-template-columns: 140px 1fr;
	border: 1px solid #e0e0e0;
	border-bottom: none;
	min-height: 50px;
	align-items: stretch;
}

.wbk-form-field:last-of-type:not(.wbk-submit-btn) {
	border-bottom: 1px solid #e0e0e0;
}

/* �� ��Ÿ�� */
.wbk-form-field>label:first-child {
	background: #f8f9fa;
	padding: 15px 20px;
	border-right: 1px solid #e0e0e0;
	display: flex;
	align-items: center;
	font-weight: 500;
	color: #333;
	font-size: 14px;
}

/* �ʼ� ǥ�� */
.required {
	color: #195851;
	font-weight: 600;
	margin-left: 2px;
}

/* �Է� �ʵ� ���� ��Ÿ�� */
.wbk-form-field input,
.wbk-form-field textarea {
	border: none;
	padding: 15px 20px;
	background: white;
	outline: none;
	font-size: 14px;
	transition: background-color 0.3s ease;
	width: 100%;
	height: 100%;
}

.wbk-form-field input:focus,
.wbk-form-field textarea:focus {
	background: #f9f9f9;
}

/* �ؽ�Ʈ���� (���ǻ���) */
.wbk-message-field textarea {
	min-height: 120px;
	resize: vertical;
}

/* ��ǰ ���� �ʵ� */
.wbk-product-field {
	align-items: stretch;
}

.wbk-product-selector {
	position: relative;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	min-height: 50px;
	background: white;
}

/* ���õ� ��ǰ ǥ�� */
.wbk-selected-product {
	display: flex;
	align-items: center;
	background: #195851;
	color: white;
	padding: 8px 16px;
	border-radius: 0;
	font-size: 14px;
	gap: 8px;
}

.product-remove {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: white;
	width: 20px;
	height: 20px;
	border-radius: 0;
	cursor: pointer;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
}

.product-remove:hover {
	background: rgba(255, 255, 255, 0.3);
}

/* ��ǰ �˻� */
.wbk-product-search {
	position: relative;
	width: 100%;
}

.product-search-input {
	width: 100%;
	padding: 10px 0;
	border: none;
	outline: none;
	font-size: 14px;
	background: transparent;
}

/* �˻� ��� */
.wbk-search-results {
	position: absolute;
	top: 100%;
	left: -20px;
	right: -20px;
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 0;
	max-height: 200px;
	overflow-y: auto;
	z-index: 1000;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	margin-top: 5px;
}

.search-result-item {
	padding: 12px 16px;
	cursor: pointer;
	border-bottom: 1px solid #f0f0f0;
	transition: background-color 0.3s ease;
}

.search-result-item:last-child {
	border-bottom: none;
}

.search-result-item:hover {
	background: #f8f9fa;
}

.result-title {
	font-weight: 500;
	color: #333;
	margin-bottom: 2px;
}

.result-price {
	font-size: 12px;
	color: #666;
}

.no-results,
.search-error {
	padding: 12px 16px;
	text-align: center;
	color: #999;
	font-size: 14px;
}

.search-error {
	color: #e74c3c;
}

/* ������������ ���� */
.wbk-privacy-field {
	grid-template-columns: 1fr;
	padding: 20px;
	background: #f8f9fa;
}

.wbk-privacy-field label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
}

.wbk-privacy-field input[type="checkbox"] {
	margin-top: 2px;
	transform: scale(1.1);
	accent-color: #195851;
	width: auto;
	height: auto;
}

.privacy-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.privacy-title {
	font-weight: 500;
	color: #333;
	font-size: 14px;
}

.privacy-desc {
	font-size: 12px;
	color: #666;
	line-height: 1.4;
}

.privacy-desc a {
	color: #195851;
	text-decoration: underline;
}

.privacy-desc a:hover {
	color: #0f3d37;
}

/* ���� ��ư */
.wbk-submit-btn {
	background: #195851;
	color: white;
	border: none;
	padding: 18px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
	border-radius: 0;
}

.wbk-submit-btn:hover {
	background: #0f3d37;
}

.wbk-submit-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
}

/* �� ������ */
@media (max-width: 768px) {
	.wbk-form-field {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
	}

	.wbk-form-field>label:first-child {
		border-right: none;
		border-bottom: 1px solid #e0e0e0;
		padding: 12px 16px;
		font-size: 13px;
	}

	.wbk-form-field input,
	.wbk-form-field textarea {
		padding: 12px 16px;
		font-size: 14px;
	}

	.wbk-product-selector {
		padding: 12px 16px;
	}

	.wbk-search-results {
		left: -16px;
		right: -16px;
	}

	.wbk-privacy-field {
		padding: 16px;
	}

	.wbk-submit-btn {
		padding: 16px;
		font-size: 15px;
	}
}
