/* ===== Theme tokens ===== */
:root{
  --bg: #f7f5f2;
  --card-bg:#fff;
  --brand:#8c6a53;        /* 咖啡色主色 */
  --brand-2:#b8957a;      /* 輔色 */
  --text:#2b2b2b;
  --muted:#7a7a7a;
  --radius:16px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* ===== Layout ===== */
.stores{
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(20px,4vw,48px);
  background: var(--bg);
  border-radius: calc(var(--radius) + 8px);
}

.store-card{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(16px,2.5vw,28px);
  margin-bottom: 28px;
  overflow: hidden;
}

/* >= 768px：地圖與資訊左右排 */
@media (min-width: 768px){
  .store-card{ grid-template-columns: 1.2fr 1fr; gap: 32px; }
}

/* ===== Map (responsive) ===== */
.store-map{
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  background: #ddd;
  /* 以比例盒維持高度：可依需求 16/9、4/3 */
  aspect-ratio: 16 / 11;
}
.store-map iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===== Info ===== */
.store-info h2{
  margin: 0 0 12px;
  font-size: clamp(20px,2.2vw,28px);
  color: var(--brand);
  letter-spacing: .05em;
}

.info-list{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}
.info-list li{
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: start;
}
.info-list .label{
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
}
.info-list .value{
  color: var(--text);
  line-height: 1.6;
  word-break: break-word;
}
.info-list a{
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px dashed color-mix(in oklab, var(--brand), white 50%);
}
.info-list a:hover{
  opacity: .85;
}

/* ===== Buttons ===== */
.btns{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn{
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
}
.btn.primary{
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 16px rgba(140,106,83,.25);
}
.btn.primary:hover{ transform: translateY(-1px); }
.btn.outline{
  border: 2px solid var(--brand-2);
  color: var(--brand);
  background: transparent;
}
.btn.outline:hover{
  background: color-mix(in oklab, var(--brand-2), white 70%);
}

/* ===== Small polish ===== */
.stores .store-card:last-child{ margin-bottom: 0; }
