.customdv {
  padding-top: 100px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 100px;
  box-sizing: border-box;
}
.store-item {
  display: flex;
}
.storeimage {
  flex: 0 0 300px;
}
  .storeimage img{
      width:100%;
  }
  .storeinfo {
    flex: 0 0 calc(100% - 400px);
    margin-left: 100px;
  }
  /**/
/* 隱藏原生 focus 樣式，點擊網頁其他地方收合用（可選） */
.storesel {
  display: flex;
  align-items: center;
  font-size: 15px;
  justify-content: end;
}

/* 模擬 select 的主體外框 */
.custom-select-wrap {
  position: relative;
  width: 200px; /* 可依畫面調整寬度 */
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  background-color: #fff;
  user-select: none;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 5px;
}

/* 右側箭頭圖示 */
.arrow-icon::after {
  content: '';
  border: solid #b5b5b5;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.custom-select-wrap.is-active .arrow-icon::after {
  transform: rotate(-135deg);
  position: relative;
  top: 4px;
}

/* 下拉選單清單外殼 */
.store-menu {
  position: absolute;
  top: 105%;
  left: 0;
  width: 100%;
  max-height: 200px; /* 限制高度，超出則顯示捲軸 */
  overflow-y: auto;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* 截圖中的精緻陰影 */
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 999;
}

  /* 下拉選單的每一項 (Option) */
  .store-menu li {
    padding: 10px 16px; /* 寬鬆的留白間距 */
    color: #333;
    cursor: pointer;
    transition: background 0.15s ease;
  }

    /* Hover 或是選中時的灰色背景（對應截圖中的桃園市效果） */
    .store-menu li:hover {
      background-color: #dcdcdc;
    }

  /* 簡易美化捲軸（非必要，但能更接近截圖質感） */
  .store-menu::-webkit-scrollbar {
    width: 6px;
  }

  .store-menu::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 3px;
  }
.arrow-icon {
  border-left: 1px solid #b5b5b5;
  padding-left: 10px;
}
  /**/
.storeinfo {
  font-size: 14px;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
}
.storemap a {
  color: #007bff;
}
/*.storemap::before {
  content: "";
  background-image: url(https://photo1.proshop.com.tw/POSMAP1.svg);
  width: 15px;
  height: 15px;
  display: inline-block;
  background-size:15px;
    margin-right: 2px;
}*/
.storetag > span {
  padding: 4px;
  background: #db6e9f;
  color: #fff;
  border-radius: 3px;
  font-size: 13px;
  margin: 0 5px 5px 0;
}
.storemore a {
  color: #000;
}
.store-item {
  display: flex;
  border-bottom: 1px solid #b5b5b5;
  padding: 20px 0;
}
.storeinfo > div {
  margin-bottom: 10px;
}
.storemap {
  display: flex;
  align-items: center;
}
.storetag {
  flex-flow: wrap;
}
.storemore a::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #000;
  display: inline-block;
  vertical-align: middle;
  /* margin-left: 4px; */
  content: "";
}
.storemore {
  text-align: right;
  margin-top:auto;
}

.storephone a {
  color: #007bff;
}

.storename {
  font-weight: bold;
}
