/* ============================================================
   Butsugu Marketplace Core – Catalog Styles
   ============================================================ */

.butsugu-catalog {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
	font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}

/* ----------------------------------------------------------
   フィルターフォーム
   ---------------------------------------------------------- */
.butsugu-filter-form {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 6px;
	padding: 16px 20px;
	margin-bottom: 24px;
}

.butsugu-filter-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.butsugu-filter-search {
	flex: 1;
	min-width: 200px;
	padding: 8px 12px;
	border: 1px solid #ced4da;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.5;
}

.butsugu-filter-select {
	padding: 8px 12px;
	border: 1px solid #ced4da;
	border-radius: 4px;
	font-size: 14px;
	background-color: #fff;
	cursor: pointer;
}

.butsugu-filter-submit {
	padding: 8px 20px;
	background: #0073aa;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s;
}

.butsugu-filter-submit:hover {
	background: #005a87;
}

.butsugu-filter-reset {
	padding: 8px 12px;
	font-size: 13px;
	color: #6c757d;
	text-decoration: none;
	white-space: nowrap;
}

.butsugu-filter-reset:hover {
	color: #333;
	text-decoration: underline;
}

/* ----------------------------------------------------------
   件数表示
   ---------------------------------------------------------- */
.butsugu-result-count {
	color: #6c757d;
	font-size: 13px;
	margin-bottom: 16px;
}

/* ----------------------------------------------------------
   商品グリッド
   ---------------------------------------------------------- */
.butsugu-product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 32px;
}

@media (max-width: 960px) {
	.butsugu-product-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.butsugu-product-grid {
		grid-template-columns: 1fr;
	}
	.butsugu-filter-row {
		flex-direction: column;
		align-items: stretch;
	}
	.butsugu-filter-search,
	.butsugu-filter-select,
	.butsugu-filter-submit {
		width: 100%;
	}
}

/* ----------------------------------------------------------
   商品カード
   ---------------------------------------------------------- */
.butsugu-product-card {
	background: #fff;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow 0.2s, transform 0.2s;
}

.butsugu-product-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.butsugu-product-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

/* サムネイル */
.butsugu-product-thumbnail {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f8f9fa;
}

.butsugu-product-thumbnail img,
.butsugu-product-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
	display: block;
}

.butsugu-product-card:hover .butsugu-product-thumbnail img {
	transform: scale(1.04);
}

/* 商品情報エリア */
.butsugu-product-info {
	padding: 14px 16px;
}

.butsugu-product-title {
	font-size: 15px;
	font-weight: 600;
	margin: 0 0 8px;
	line-height: 1.4;
	color: #212529;
}

/* タクソノミーラベル */
.butsugu-tax-labels {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 8px;
}

.butsugu-tax-label {
	display: inline-block;
	font-size: 11px;
	padding: 2px 7px;
	border-radius: 10px;
	font-weight: 500;
	line-height: 1.6;
}

.butsugu-tax-scent    { background: #fff3cd; color: #856404; }
.butsugu-tax-smoke    { background: #e2e3e5; color: #383d41; }
.butsugu-tax-material { background: #d4edda; color: #155724; }

/* 通常価格 */
.butsugu-retail-price {
	font-size: 17px;
	font-weight: 700;
	color: #c0392b;
	margin-bottom: 6px;
	line-height: 1.4;
}

/* 卸売情報（小売店・管理者のみ表示） */
.butsugu-wholesale-info {
	background: #e8f4f8;
	border: 1px solid #b8daff;
	border-radius: 4px;
	padding: 8px 12px;
	margin-top: 8px;
	font-size: 12px;
}

.butsugu-wholesale-info dl {
	margin: 0;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 3px 8px;
	align-items: baseline;
}

.butsugu-wholesale-info dt {
	color: #6c757d;
	white-space: nowrap;
}

.butsugu-wholesale-info dd {
	margin: 0;
	font-weight: 600;
	color: #0056b3;
}

/* ----------------------------------------------------------
   検索結果なし
   ---------------------------------------------------------- */
.butsugu-no-results {
	text-align: center;
	color: #6c757d;
	padding: 48px 16px;
	font-size: 15px;
}

/* ----------------------------------------------------------
   ページネーション
   ---------------------------------------------------------- */
.butsugu-catalog ul.page-numbers {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px;
}

.butsugu-catalog ul.page-numbers li {
	margin: 0;
}

.butsugu-catalog .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 8px;
	border: 1px solid #dee2e6;
	border-radius: 4px;
	text-decoration: none;
	font-size: 14px;
	color: #0073aa;
	transition: background 0.15s, color 0.15s;
}

.butsugu-catalog .page-numbers:hover,
.butsugu-catalog .page-numbers.current {
	background: #0073aa;
	color: #fff;
	border-color: #0073aa;
}

.butsugu-catalog .page-numbers.dots {
	border: none;
	cursor: default;
	color: #6c757d;
}
