.header {
    background-color: rgba(21, 17, 13, 0.85);
}

.page-link {
	color: #919191;
}

.page-link:hover {
    color: #555;
}

.page-link:focus {
    color: #555;
    box-shadow: 0 0 0 .25rem rgba(0,0,0,0.25)
}

.page-item.active .page-link {
    background-color: #393837;
    border-color: #FFF;
}

/* 商品卡片優化 */
.product-card {
	border: none;
	background: transparent;
	transition: 0.4s;
}
.img-box {
	background: #f1f5f9;
	border-radius: 20px;
	padding: 30px;
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	transition: 0.4s;
	position: relative;
}
.img-box img { max-width: 100%; transition: 0.5s; }
.product-card:hover .img-box {
	background: #e2e8f0;
	transform: translateY(-5px);
}
.product-card:hover img { transform: scale(1.1); }

.price { font-size: 1.2rem; font-weight: 700; color: #0f172a; }
.buy-btn {
	color: #1e293b;
	width: 40px; height: 40px; border-radius: 12px;
	border: 1px solid #e2e8f0; background: white;
	display: flex; align-items: center; justify-content: center;
	transition: 0.3s;
}
.buy-btn:hover { background: #1e293b; color: white; }

/* ==平板電腦====================================== */
@media screen and (min-width: 576px) and (max-width: 991px) {
}
/* ==手機電腦====================================== */
@media screen and (max-width: 575px) {
}