/* BotMart Market frontend styles */

.botmart-product-wrap {
	margin: 24px 0;
	clear: both;
	display: block;
	width: 100%;
	position: relative;
	z-index: 1;
}

.botmart-category-icon-wrap {
	margin: 0 0 10px;
}

.botmart-category-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 5px;
	background: rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.08);
	font-size: 24px;
	line-height: 1;
}

.botmart-section-title {
	margin: 0 0 12px;
	font-size: 18px;
	line-height: 1.3;
}

.botmart-cta {
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 5px;
	background: #ffffff;
	padding: 18px;
	margin: 0 0 18px;
	clear: both;
	position: relative;
	z-index: 1;
}

.botmart-cta__inner {
	max-width: 100%;
}

.botmart-cta__top {
	display: grid;
	grid-template-columns: 1.6fr 0.9fr;
	gap: 16px;
	align-items: start;
}

.botmart-cta__title {
	margin: 0 0 10px;
	font-size: 18px;
}

.botmart-cta__label {
	display: inline-block;
	font-size: 12px;
	color: rgba(0, 0, 0, 0.55);
	margin-right: 6px;
}

.botmart-cta__value {
	color: rgba(0, 0, 0, 0.9);
}

.botmart-cta__price,
.botmart-cta__vendor,
.botmart-cta__meta {
	margin: 0 0 10px;
}

.botmart-cta__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.botmart-cta__pill {
	display: inline-flex;
	gap: 6px;
	align-items: center;
	padding: 6px 10px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 5px;
	background: rgba(0, 0, 0, 0.02);
}

.botmart-cta__right {
	border-left: 1px solid rgba(0, 0, 0, 0.06);
	padding-left: 16px;
}

.botmart-cta__hint {
	margin: 10px 0 0;
	font-size: 12px;
	color: rgba(0, 0, 0, 0.6);
}

.botmart-button {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 10px 12px;
	border-radius: 5px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	background: #111827;
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	line-height: 1.35;
	position: relative;
	z-index: 2;
	overflow: hidden;
	isolation: isolate;
}

.botmart-button:hover,
.botmart-button:focus {
	background: #0b1220;
	color: #ffffff;
	text-decoration: none;
}

.botmart-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 10px;
}

.botmart-badge {
	display: inline-flex;
	align-items: center;
	padding: 5px 10px;
	border-radius: 999px;
	font-size: 12px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	background: rgba(0, 0, 0, 0.02);
}

.botmart-badge--verified {
	border-color: rgba(16, 185, 129, 0.35);
	background: rgba(16, 185, 129, 0.08);
}

.botmart-badge--limited {
	border-color: rgba(245, 158, 11, 0.35);
	background: rgba(245, 158, 11, 0.10);
}

.botmart-badge--rd_only {
	border-color: rgba(239, 68, 68, 0.35);
	background: rgba(239, 68, 68, 0.10);
}

.botmart-specs {
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 5px;
	background: #ffffff;
	padding: 18px;
	margin: 0 0 18px;
	clear: both;
	position: relative;
	z-index: 1;
}

.botmart-specs__table {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.botmart-specs__row {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 5px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	background: rgba(0, 0, 0, 0.02);
}

.botmart-specs__key {
	font-weight: 600;
	color: rgba(0, 0, 0, 0.85);
}

.botmart-specs__value {
	color: rgba(0, 0, 0, 0.75);
}

.botmart-inquiry {
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 5px;
	background: #ffffff;
	padding: 18px;
	margin: 0 0 18px;
	clear: both;
	position: relative;
	z-index: 1;
}

.botmart-alert {
	border-radius: 5px;
	padding: 10px 12px;
	margin: 0 0 14px;
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.botmart-alert--success {
	border-color: rgba(16, 185, 129, 0.35);
	background: rgba(16, 185, 129, 0.08);
}

.botmart-alert--error {
	border-color: rgba(239, 68, 68, 0.35);
	background: rgba(239, 68, 68, 0.10);
}

.botmart-alert--warning {
	border-color: rgba(245, 158, 11, 0.35);
	background: rgba(245, 158, 11, 0.10);
}

.botmart-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.botmart-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.botmart-field--full {
	grid-column: 1 / -1;
}

.botmart-form input,
.botmart-form textarea {
	border-radius: 5px;
	border: 1px solid rgba(0, 0, 0, 0.18);
	padding: 10px 10px;
	font-size: 14px;
	width: 100%;
}

.botmart-form textarea {
	resize: vertical;
}

.botmart-form label {
	font-size: 13px;
	color: rgba(0, 0, 0, 0.8);
}

.botmart-required {
	color: #b91c1c;
}

.botmart-form__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 14px;
}

.botmart-form__fineprint {
	margin: 0;
	font-size: 12px;
	color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
	.botmart-cta__top {
		grid-template-columns: 1fr;
	}

	.botmart-cta__right {
		border-left: none;
		padding-left: 0;
	}

	.botmart-form__grid {
		grid-template-columns: 1fr;
	}

	.botmart-specs__row {
		grid-template-columns: 1fr;
	}
}

