@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block
}

body {
  line-height: 1
}

ol,
ul {
  list-style: none
}

blockquote,
q {
  quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none
}

table {
  border-collapse: collapse;
  border-spacing: 0
}
/* after reset.min.css ###########################################################*/
/* 主要容器設定：全螢幕佈局與漸層背景 */
html, body, .container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* 全域字體設定與防爆版處理 */
body {
  letter-spacing: 1px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "微軟正黑體", "Microsoft JhengHei";
}

.container {
  background: #232526;
  background: linear-gradient(to right, #414345, #232526);
}

.taiwan-map, .shop-list {
  width: 50%;
  height: 100%;
}

#map {
  width: 100%;
  height: 100%;
}

#map svg {
  max-height: 100vh;
}

#map path {
  fill: transparent;
  stroke: #FFF;
  cursor: pointer;
  transition: fill .2s ease, stroke .2s ease, transform .2s ease;
}

#map path:hover, #map path.active {
  fill: rgba(255, 202, 40, 0.5);
  stroke: #FFCA28;
}
/*transform: translateY(-5px);*/

h1, h2 {
  position: relative;
  line-height: 2;
  text-align: center;
  font-weight: bold;
}

h1 {
  font-size: 5vw;
  color: #FFCA28;
}

h1::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-50%);
}

h2 {
  font-size: 4vw;
  color: rgba(255, 255, 255, 0.8);
}

.shop-list {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}

.shop-list h1, .shop-list h2 {
  width: 100%;
}

/* 行動裝置斷點：垂直堆疊佈局 */
@media screen and (max-width: 480px) {
  .taiwan-map, .shop-list {
    width: 100%;
  }
  .taiwan-map {
    height: 80vh;
  }
  .shop-list {
    height: 20vh;
  }
  h1 {
    font-size: 8vw;
  }
  h2 {
    font-size: 6vw;
  }
}

#map-tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  color: #FFF;
  padding: 5px 10px;
  border-radius: 4px;
  pointer-events: none;
  font-size: 14px;
  transition: opacity 0.2s;
  z-index: 10;
}
.st1 {
  pointer-events: none;
}
.st0 {
  fill: transparent;
  stroke: #FFF;
  cursor: pointer;
  transition: fill .2s ease, stroke .2s ease, transform .2s ease;
}
.st2 {
  enable-background: new;
} 