/* 商品ページ 価格表 */
.wcop-price-table-wrap {
	margin: 0.75em 0;
	max-width: 440px;
}

.wcop-price-table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-size: 0.9rem;
	line-height: 1.5;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	border: 1px solid #e8e8e8;
}

/* 見出し行 */
.wcop-price-table thead {
	background: linear-gradient(180deg, #f7f7f7 0%, #efefef 100%);
	border-bottom: 1px solid #e0e0e0;
}

.wcop-price-table thead th {
	padding: 0.5em 0.65em;
	font-weight: 600;
	font-size: 0.8em;
	letter-spacing: 0.02em;
	color: #555;
	text-transform: none;
}

/* 見出しは一律左寄せ */
.wcop-price-table thead th {
	text-align: left;
}
.wcop-price-table thead th:first-child {
	width: 30%;
}
.wcop-price-table thead th:nth-child(2) {
	width: 20%;
}
.wcop-price-table thead th:nth-child(3) {
	width: 12%;
}
.wcop-price-table thead th:nth-child(4) {
	width: 38%;
}

/* データ行 */
.wcop-price-table tbody td {
	padding: 0.5em 0.65em;
	vertical-align: middle;
	border-bottom: 1px solid #f0f0f0;
}

.wcop-price-table tbody tr:last-child td {
	border-bottom: none;
}

.wcop-price-table tbody td:first-child {
	font-weight: 600;
	color: #333;
}

.wcop-price-table tbody td.wcop-col-num {
	text-align: right;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
	color: #333;
}

/* 合計行 */
.wcop-price-table tbody tr.wcop-total-row td {
	background: #fafafa;
	border-top: 2px solid #e0e0e0;
	padding-top: 0.6em;
	padding-bottom: 0.6em;
	font-weight: 600;
}

.wcop-price-table tbody tr.wcop-total-row td:first-child {
	color: #222;
}

.wcop-price-table tbody tr.wcop-total-row td.wcop-total-cell {
	text-align: right;
}

.wcop-price-table .wcop-total-price {
	font-size: 1.1em;
	color: #c00;
	letter-spacing: 0.02em;
}

/* 金額セル内の数値（右揃え・等幅） */
.wcop-price-table .wcop-unit-subtotal,
.wcop-price-table .wcop-plate-subtotal,
.wcop-price-table .wcop-total-price {
	display: inline-block;
	min-width: 4.5em;
	text-align: right;
}
