/**
 * 盆栽 針金太さガイド - 専用スタイル
 */

/* ========================================
   入力セクション
   ======================================== */
.input-section {
	border-bottom: 1px solid var(--color-border);
}

/* ========================================
   推奨詳細
   ======================================== */
.detail-section {
	border-bottom: 1px solid var(--color-border);
}

.detail-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.detail-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
}

.detail-label {
	font-size: 13px;
	color: var(--color-text-secondary);
	flex-shrink: 0;
}

.detail-value {
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 600;
	color: var(--color-text);
	text-align: right;
}

.detail-note {
	padding: 10px 14px;
	background: #f1f8e9;
	border: 1px solid #c5e1a5;
	border-radius: var(--radius);
	font-size: 12px;
	color: #33691e;
	line-height: 1.6;
}

/* ========================================
   アルミ vs 銅 比較テーブル
   ======================================== */
.wire-compare-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
	margin-top: 10px;
}

.wire-compare-table th,
.wire-compare-table td {
	padding: 8px 12px;
	border: 1px solid var(--color-border);
	text-align: left;
}

.wire-compare-table th {
	background: #f1f8e9;
	color: #33691e;
	font-weight: 600;
	font-size: 12px;
	white-space: nowrap;
}

.wire-compare-table td {
	background: var(--color-white);
	color: var(--color-text);
}

.wire-compare-table tr:hover td {
	background: #f9fdf5;
}

/* ========================================
   ヒントボックス
   ======================================== */
.wire-tip {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 14px;
	background: #fffde7;
	border: 1px solid #fff9c4;
	border-radius: var(--radius);
	font-size: 12px;
	color: #f57f17;
	line-height: 1.6;
	margin-top: 10px;
}

.wire-tip-icon {
	flex-shrink: 0;
	font-size: 16px;
	line-height: 1;
}

/* ========================================
   アクションボタン
   ======================================== */
.action-section {
	display: flex;
	justify-content: center;
	gap: 12px;
	padding: 12px 20px;
}

.btn-secondary {
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	color: #3A5A25;
	background: var(--color-white);
	border: 1px solid #3A5A25;
	border-radius: var(--radius);
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;
}

.btn-secondary:hover {
	background: #f1f8e9;
}

/* ========================================
   レスポンシブ
   ======================================== */
@media (max-width: 600px) {
	.detail-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.detail-value {
		text-align: left;
	}

	.wire-compare-table th,
	.wire-compare-table td {
		padding: 6px 8px;
		font-size: 12px;
	}
}
