/*
Theme Name: Store Theme
Description: 本店自製主題。只放顯示、版面、前端互動；商業規則一律在 store-core 外掛。
Version: 0.1.0
Requires at least: 6.9
Requires PHP: 8.1
Text Domain: store-theme
*/

/* 品牌設定集中在這裡。改這一行的顏色、存檔、重整，就是「本機一秒生效」與「push 後 Zeabur 重建」的測試點。 */
:root {
  --store-brand: #e4aa16;
  --store-ink: #1a1a1a;
  --store-paper: #fafaf7;
  --store-max-width: 1120px;
}

body {
  margin: 0;
  color: var(--store-ink);
  background: var(--store-paper);
  font-family:
    system-ui,
    -apple-system,
    'Segoe UI',
    Roboto,
    'Noto Sans TC',
    sans-serif;
  line-height: 1.6;
}

.store-header,
.store-main,
.store-footer {
  max-width: var(--store-max-width);
  margin: 0 auto;
  padding: 16px 20px;
}

.store-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--store-brand);
}

.store-header__logo {
  color: var(--store-brand);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.store-footer {
  margin-top: 48px;
  color: #666;
  font-size: 0.875rem;
  border-top: 1px solid #ddd;
}
