:root { --accent-gold: #c5a059; --dark-bg: #1a1a1a; }
#main { font-family: 'Noto Sans TC', sans-serif; background-color: #f8f9fa; }

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

.section-title {
    padding-bottom: 40px !important;
}

/* 導覽列與標語 */
.hero-section { background: var(--dark-bg); color: white; padding: 50px 0; }

/* 篩選按鈕 */
.btn-filter {
	border: 1px solid #ccc; background: #fff; border-radius: 50px;
	padding: 6px 20px; margin: 5px; transition: 0.3s;
}
.btn-filter.active { background: var(--dark-bg); color: #fff; border-color: var(--dark-bg); }

/* 商品卡片 */
.product-card { border: none; border-radius: 12px; transition: 0.3s; background: #fff; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.img-container { height: 250px; display: flex; align-items: center; justify-content: center; padding: 20px; }
.product-img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* 標籤樣式 */
.type-badge { font-size: 0.7rem; background: #eee; padding: 3px 8px; border-radius: 4px; margin-right: 4px; color: #666; }

/* 彈窗表格樣式 */
.spec-table th { background-color: #f8f9fa; width: 35%; }

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