.weapon-type-filter {
	align-items: center;
	clear: both;
	display: flex;
	float: none;
	flex-wrap: wrap;
	gap: 7px;
	justify-content: center;
	margin: 12px auto;
	width: 100%;
}

.weapon-type-filter button {
	background: #5d3c17;
	border: 1px solid #e7a126;
	border-radius: 3px;
	color: #f8d38d;
	cursor: pointer;
	font: inherit;
	padding: 6px 12px;
	text-decoration: none;
}

.weapon-type-filter button:hover,
.weapon-type-filter button.active {
	background: #e7a126;
	color: #281a0c;
}

.item-detail-section {
	border-top: 1px solid rgba(231, 161, 38, 0.45);
	margin: 18px auto 0;
	max-width: 650px;
	padding: 14px 12px 2px;
}

.item-detail-section h3 {
	color: #5d3c17;
	font-size: 16px;
	margin: 0 0 12px;
	text-align: center;
}

.item-detail-card-list,
.item-detail-craft-materials,
.item-detail-craft-row {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.item-detail-card {
	align-items: center;
	background: rgba(231, 161, 38, 0.08);
	border: 1px solid rgba(231, 161, 38, 0.55);
	border-radius: 4px;
	color: inherit;
	display: inline-flex;
	flex-direction: column;
	gap: 4px;
	min-height: 82px;
	min-width: 92px;
	padding: 8px;
	text-align: center;
	text-decoration: none;
}

.item-detail-card:hover {
	background: rgba(231, 161, 38, 0.2);
}

.item-detail-card-image {
	height: 34px;
	object-fit: contain;
	width: 34px;
}

.item-detail-card-name {
	font-size: 12px;
	max-width: 130px;
}

.item-detail-card-count {
	font-size: 11px;
	font-weight: bold;
}

.item-detail-craft-arrow {
	color: #e7a126;
	font-size: 28px;
}

.item-market-table-wrap {
	overflow-x: auto;
}

.item-market-table {
	border-collapse: collapse;
	margin: 0 auto;
	width: 100%;
}

.item-market-table th,
.item-market-table td {
	border: 1px solid rgba(231, 161, 38, 0.45);
	padding: 7px;
	text-align: center;
}

.item-monster-map {
	background: #000;
	border: 3px solid #e7a126;
	height: 360px;
	width: 100%;
}

.item-monster-map-nav {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: space-between;
	margin-top: 8px;
}

.item-monster-map-nav button {
	cursor: pointer;
	white-space: nowrap;
}

.item-monster-map-nav button:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.item-monster-map-status {
	font-size: 12px;
	text-align: center;
}

@media (max-width: 600px) {
	.item-detail-craft-arrow {
		transform: rotate(90deg);
	}

	.item-monster-map {
		height: 280px;
	}

	.item-monster-map-nav {
		flex-wrap: wrap;
	}

	.item-monster-map-status {
		order: -1;
		width: 100%;
	}
}
