/* ── Stores Page CSS (cloned from competitor) ─────────── */

/* Reset (shared with store-page.css) */
.storepage *, .storepage *::before, .storepage *::after { box-sizing: border-box; }
.storepage {
    font-family: 'EuclidCircularB', system-ui, -apple-system, sans-serif;
    font-size: 16px; color: #333;
    -webkit-font-smoothing: antialiased;
    background: #fff; min-height: 60vh;
}
.storepage a { color: #333; text-decoration: none; cursor: pointer; }

.coverlink {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.storepage.wrapper {
  position: relative;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

.ma-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.stores-ls {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.stores-item {
  position: relative;
  width: 100%;
}

.stores-con {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 4px;
  margin-bottom: 8px;
  text-align: left;
}

.stores-name {
  font-size: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}

.stores-num {
  font-size: 14px;
  color: #999;
  margin-left: 10px;
}

.stores-con:hover .stores-name,
.stores-con:hover .stores-num {
  color: #d33c3c;
}

/* ── Breadcrumb (mobile hidden) ─────────── */
.storepage .breadcrumb {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── Tablet (≥768px) ─────────── */
@media screen and (min-width: 768px) {
  .stores-ls {
    margin-left: -12px;
  }

  .stores-item {
    width: 50%;
    padding-left: 12px;
  }
}

/* ── Desktop (≥1200px) ─────────── */
@media screen and (min-width: 1200px) {
  .storepage.wrapper {
    max-width: 1136px;
  }

  .stores-item {
    width: 33.3333%;
  }

  .storepage .breadcrumb {
    line-height: 1.2;
    display: flex;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: -8px;
    white-space: nowrap;
    color: #bbb;
  }

  .storepage .breadcrumb span {
    font-family: EuclidCircularB;
    font-size: 13px;
    font-weight: 400;
    padding-right: 8px;
    padding-left: 8px;
    color: #999;
  }

  .storepage .breadcrumb a:hover span {
    text-decoration: underline;
  }

  .storepage .breadcrumb li>span {
    color: #c49f43;
  }
}
