/* テイクアウト・宅配 事前注文 フロント */

.tdpo-header-bar {
	background: #f7f7f7;
	border-bottom: 1px solid #e5e5e5;
	padding: 8px 16px;
	text-align: center;
}

.tdpo-switcher {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.tdpo-switcher__label {
	font-size: 0.9em;
	color: #555;
}

.tdpo-switcher__btn {
	border: 1px solid #c00;
	background: #fff;
	color: #c00;
	padding: 6px 18px;
	border-radius: 999px;
	cursor: pointer;
	font-size: 0.95em;
	line-height: 1.2;
	transition: background 0.15s, color 0.15s;
}

.tdpo-switcher__btn:hover {
	background: #fbeaea;
}

.tdpo-switcher__btn.is-active {
	background: #c00;
	color: #fff;
	font-weight: 700;
}

.tdpo-switcher__btn:disabled {
	opacity: 0.6;
	cursor: default;
}

/* カート上部 */
.tdpo-cart-selector {
	margin: 0 0 1.5em;
	padding: 12px 16px;
	background: #fafafa;
	border: 1px solid #eee;
	border-radius: 6px;
}

/* チェックアウト */
.tdpo-checkout-service {
	margin: 0 0 1.5em;
	padding: 12px 16px;
	background: #fafafa;
	border: 1px solid #eee;
	border-radius: 6px;
}

.tdpo-checkout-service__current {
	margin: 0 0 8px;
}

.tdpo-datetime {
	margin: 1em 0 1.5em;
	padding: 16px;
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	background: #fff;
}

.tdpo-datetime__title {
	margin-top: 0;
	font-size: 1.05em;
}

.tdpo-datetime select:disabled,
.tdpo-datetime option:disabled {
	color: #aaa;
}

/* --- 対応サービス バッジ（情報表示・押せない） --- */
.tdpo-badges {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin: 6px 0;
}

.tdpo-badges--single {
	margin: 10px 0 14px;
}

.tdpo-badges__label {
	font-size: 0.85em;
	color: #666;
}

.tdpo-badge {
	display: inline-block;
	font-size: 0.78em;
	font-weight: 600;
	line-height: 1;
	padding: 4px 9px;
	border-radius: 4px;
	border: 1px solid transparent;
	white-space: nowrap;
}

/* ヘッダーの操作ピル（丸・赤）とは別物に見えるよう、角丸タグ＋淡色で差別化 */
.tdpo-badge--takeout {
	background: #eef6ff;
	color: #1c5fa8;
	border-color: #cfe2f7;
}

.tdpo-badge--delivery {
	background: #fdf0ec;
	color: #b24a25;
	border-color: #f6d6c9;
}

/* --- 一覧上部の絞り込みドロップダウン（カテゴリーと同じ見た目） --- */
.tdpo-menu-filter {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 12px;
}

.tdpo-menu-filter__label {
	font-size: 0.9em;
	color: #555;
}

.tdpo-menu-select {
	padding: 6px 10px;
}

/* --- 専用ショップページ [tdpo_shop] --- */
.tdpo-shop {
	margin: 0 auto;
}

.tdpo-shop .tdpo-menu-filter {
	margin-bottom: 18px;
}

.tdpo-shop__grid {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat( var( --tdpo-cols, 4 ), 1fr );
	gap: 24px 20px;
}

/* タブレットは3列 */
@media ( max-width: 1024px ) {
	.tdpo-shop__grid {
		grid-template-columns: repeat( 3, 1fr );
	}
}

/* スマホは2列 */
@media ( max-width: 768px ) {
	.tdpo-shop__grid {
		grid-template-columns: repeat( 2, 1fr );
		gap: 18px 12px;
	}
}

.tdpo-shop__item {
	margin: 0 !important;
	padding: 0;
	width: auto !important;
	float: none !important;
	display: flex;
	flex-direction: column;
	text-align: left;
}

.tdpo-shop__thumb {
	display: block;
	margin-bottom: 10px;
}

.tdpo-shop__thumb img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 6px;
}

.tdpo-shop__title {
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 6px;
	text-decoration: none;
}

.tdpo-shop__badges {
	margin-bottom: 6px;
}

.tdpo-shop__price {
	display: block;
	margin-bottom: 10px;
	font-size: 1.02em;
}

.tdpo-shop__cart {
	margin-top: auto;
}

.tdpo-shop__pagination {
	text-align: center;
}

.tdpo-shop__empty {
	padding: 24px 0;
	color: #777;
}

/* --- 商品ページ：現在のご利用方法で買えない場合の案内 --- */
.tdpo-availability-notice {
	margin: 10px 0 16px;
	padding: 12px 14px;
	background: #fff8e5;
	border: 1px solid #f3e2a8;
	border-radius: 6px;
}

.tdpo-availability-notice p {
	margin: 0 0 8px;
}

.tdpo-availability-notice__switch {
	cursor: pointer;
}
