spz-sidebar[side='bottom'].store-list-modal-sidebar {
  width: fit-content;
  height: fit-content;
}

.store-list-modal {
  width: 560px;
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0px 4px 30px rgba(50, 40, 40, 0.06);
}

.store-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 28px 24px;
}

.store-list-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: #09091a;
  font-family: 'DM Sans', 'HarmonyOS Sans SC', 'PingFang SC', sans-serif;
}

.store-list-close {
  width: 20px;
  height: 20px;
  padding: 4px;
  border: none;
  background: transparent;
  color: #6d7175;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.store-list-divider {
  width: 100%;
  height: 1px;
  background: #f3f3f4;
}

.store-list-content {
  padding: 28px;
  max-height: 448px;
  overflow-y: auto;
}

.store-list-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 28px;
}

.store-list-empty-image-wrap {
  width: 146px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-list-empty-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.store-list-empty-text {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #53535f;
  text-align: center;
  font-family: 'DM Sans', 'HarmonyOS Sans SC', 'PingFang SC', sans-serif;
}

.store-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  cursor: pointer;
}

.store-item:last-child {
  margin-bottom: 0;
}

.store-item-main {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.store-item-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #F1F2F3;
  overflow: hidden;
  flex-shrink: 0;
}

.store-item-logo-img {
  width: 100%;
}

.store-item-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-item-info {
  min-width: 0;
}

.store-item-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.store-item-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  color: #09091a;
  font-family: 'DM Sans', 'HarmonyOS Sans SC', 'PingFang SC', sans-serif;
}

.store-item-state {
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  color: #53535F;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.store-item-state.selected-state-active {
  color: var(--primary-color);
  background: #F5F8FF;
}

.store-item-state.selected-state-expired {
  background: #F3F3F4;
}

.store-item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #53535f;
  font-size: 14px;
  line-height: 24px;
  min-width: 0;
  font-family: 'DM Sans', 'HarmonyOS Sans SC', 'PingFang SC', sans-serif;
}

.store-item-domain {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.store-item-separator {
  width: 1px;
  height: 12px;
  background: #d9d9d9;
  flex-shrink: 0;
}

.store-item-id {
  color: #84848c;
  flex-shrink: 0;
}

.store-item-radio-wrap {
  flex-shrink: 0;
}

.store-item-radio {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent-color);
  cursor: pointer;
}

.store-list-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 28px;
}

.store-btn {
  min-width: 84px;
  border: none;
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 24px;
  cursor: pointer;
  font-family: 'DM Sans', 'HarmonyOS Sans SC', 'PingFang SC', sans-serif;
}

.store-btn-cancel {
  background: #f3f3f4;
  color: #09091a;
}

.store-btn-confirm {
  background: var(--btn-primary-bg-color);
  color: #fff;
  font-weight: 600;
}

@media (max-width: 959.98px) {
  spz-sidebar[side='bottom'].store-list-modal-sidebar {
    width: 100%;
    height: 85%;
  }

  .store-list-modal {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: 24px 24px 0 0;
  }

  .store-list-empty {
    flex: 1;
  }

  .store-list-content {
    flex: 1;
    max-height: none;
  }

  .store-btn-confirm {
    width: 100%;
    padding: 12px 15px;
  }
}

@media (min-width: 960px) {
  spz-sidebar[side='bottom'].store-list-modal-sidebar {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-name: none;
  }
}