:root {
  --primary-color: #DF7621;
  --primary-light: #E88A3F;
  --primary-dark: #C65D1A;
  --bg-main: #FFFFFF;
  --bg-soft: #FDF9F6; /* 溫暖的淺米色，更符合品牌色 */
  --text-main: #2C3E50;
  --text-muted: #64748B;
  --border-color: #F1F5F9;
  --card-shadow: 0 10px 30px rgba(223, 118, 33, 0.05);
  --card-shadow-hover: 0 20px 40px rgba(223, 118, 33, 0.1);
  --radius-lg: 1rem;    /* 16px */
  --radius-xl: 1.5rem;  /* 24px */
}

/* 全域設定 */
body {
  font-family: "Zen Old Mincho", "Noto Serif TC", "Microsoft JhengHei", serif !important;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.7;
}

/* 統一字體 */
p, h1, h2, h3, h4, h5, h6, 
span:not(.twicon):not(.fa):not([class*="fa-"]), 
a, li, td, th, label, input, textarea, select, button {
  font-family: "Zen Old Mincho", "Noto Serif TC", "Microsoft JhengHei", serif !important;
}

/* 標題裝飾 */
h2 {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.title-underline {
  position: relative;
  display: inline-block;
}

.title-underline::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* 統一卡片樣式 */
.standard-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.standard-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--primary-light);
}

/* 按鈕風格 */
.btn-primary {
  background: var(--primary-color);
  color: white;
  padding: 0.8rem 2.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(223, 118, 33, 0.2);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(223, 118, 33, 0.3);
}

/* 頁尾格線系統 */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* 地圖不支援佔位符 (針對 LINE 瀏覽器優化) */
.store-map-error-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  background: #F8FAFC;
  padding: 30px;
  text-align: center;
  color: #64748B;
  border-radius: var(--radius-xl);
}

.store-map-error-placeholder i {
  font-size: 3rem;
  color: #CBD5E1;
  margin-bottom: 20px;
}

.store-map-error-placeholder p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #475569;
  line-height: 1.6;
}

.map-error-btn {
  background: var(--primary-color);
  color: white !important;
  padding: 10px 24px;
  border-radius: 99px;
  font-weight: 700;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(223, 118, 33, 0.2);
}

.map-error-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(223, 118, 33, 0.3);
}
