* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --711-green: #008061;
  --711-green-dark: #006b51;
  --711-orange: #f39800;
  --711-orange-dark: #e08800;
  --711-red: #e60012;
  --711-bg: #ececec;
  --711-border: #d5d5d5;
  --711-gray: #888;
  --711-text: #333;
  --711-white: #fff;
  --711-step-gray: #bdbdbd;
  --711-section-bg: #f7f7f7;
}

body {
  font-family: Arial, "Microsoft JhengHei", sans-serif;
  background: var(--711-bg);
  color: var(--711-text);
  line-height: 1.5;
  font-size: 14px;
  -webkit-text-size-adjust: 100%;
}

a { color: var(--711-green); text-decoration: none; }

.site-header {
  display: flex;
  align-items: center;
  background: var(--711-white);
  border-bottom: 3px solid var(--711-green);
  padding: 8px 12px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--711-text);
}

.logo-slot {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-logo {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.header-spacer { width: 32px; }

.side-menu {
  position: fixed;
  top: 0; left: 0;
  width: 260px;
  height: 100%;
  background: var(--711-white);
  z-index: 200;
  box-shadow: 2px 0 12px rgba(0,0,0,.15);
  padding: 20px;
}

.side-menu-inner h3 { color: var(--711-green); margin-bottom: 8px; }
.side-menu-inner p { font-size: 13px; margin: 6px 0; }

.menu-close {
  margin-top: 16px;
  background: var(--711-green);
  color: var(--711-white);
  border: none;
  padding: 8px 16px;
  border-radius: 3px;
  cursor: pointer;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 150;
}

.page {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 0 20px;
  min-height: 100vh;
}

.breadcrumb {
  padding: 10px 12px;
  font-size: 12px;
  color: var(--711-gray);
  background: var(--711-white);
  border-bottom: 1px solid var(--711-border);
}

.breadcrumb a { color: var(--711-gray); }
.bc-sep { margin: 0 4px; }

.page-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px;
  background: var(--711-white);
  border-bottom: 1px solid var(--711-border);
}

.page-head-left h1 {
  font-size: 18px;
  color: var(--711-green);
  font-weight: 700;
}

.page-subtitle { font-size: 13px; color: var(--711-gray); }

.back-link {
  font-size: 12px;
  color: var(--711-green);
  white-space: nowrap;
  padding-top: 4px;
}

.steps {
  display: flex;
  list-style: none;
  background: var(--711-white);
  border-bottom: 1px solid var(--711-border);
}

.steps li {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 4px;
  font-size: 11px;
  color: var(--711-gray);
  text-align: center;
  position: relative;
}

.steps li + li::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 50%;
  width: 100%;
  height: 2px;
  background: var(--711-step-gray);
  z-index: 0;
}

.steps li.done + li::before {
  background: var(--711-green);
}

.steps li .step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--711-step-gray);
  color: var(--711-white);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.steps li.active { color: var(--711-green); font-weight: 700; }
.steps li.active .step-num { background: var(--711-green); }
.steps li.done { color: var(--711-green-dark); }
.steps li.done .step-num { background: var(--711-green); }

.step-text { line-height: 1.2; }

.section-title {
  background: var(--711-green);
  color: var(--711-white);
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
}

.page-section-h2 {
  background: var(--711-green);
  color: var(--711-white);
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 700;
}

.detail-title {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  background: var(--711-section-bg);
  border-bottom: 1px solid var(--711-border);
}

/* kv-table: 左灰右白 */
.kv-table {
  background: var(--711-white);
  border-bottom: 1px solid var(--711-border);
}

.kv-row {
  display: flex;
  border-bottom: 1px solid #ddd;
  min-height: 42px;
}

.kv-label {
  width: 35%;
  flex-shrink: 0;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
  font-size: 13px;
  border-right: 1px solid #ddd;
  text-align: center;
}

.kv-value {
  flex: 1;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  font-size: 14px;
}

.kv-value.kv-img { justify-content: center; padding: 8px; }

.kv-table .product-thumb {
  width: 56px;
  height: 56px;
}

/* ship-section: 蓝色标题区块 */
.ship-section {
  background: var(--711-white);
  border-bottom: 1px solid var(--711-border);
}

.ship-section-head {
  background: #e8f4fc;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 14px;
  margin: 0;
  border-bottom: 1px solid #eee;
}

.ship-section-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  font-size: 14px;
}

.ship-section-body--total strong {
  font-size: 16px;
  font-weight: 700;
}

.ship-select-box {
  flex: 1;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 8px 10px;
  font-size: 13px;
  background: #fff;
  min-height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.ship-echo {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--711-text);
  max-width: 45%;
  text-align: right;
}

.total-amount {
  color: #e60012 !important;
  font-size: 22px;
  font-weight: 700;
}

.cleaning-options label {
  font-weight: 400;
  cursor: pointer;
  font-size: 13px;
  display: block;
}

.cleaning-options input {
  margin-right: 4px;
  accent-color: var(--711-orange);
}

.agree-block {
  background: var(--711-white);
  padding: 12px;
  border-bottom: 1px solid var(--711-border);
}

.agree-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}

.agree-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
}

.agree-row input { margin-top: 3px; flex-shrink: 0; accent-color: var(--711-orange); }

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-line {
  display: block;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
}

.btn-primary {
  background: var(--711-orange);
  color: var(--711-white);
}

.btn-primary:hover:not(:disabled) { background: var(--711-orange-dark); }
.btn-primary:disabled { background: #ccc; cursor: not-allowed; }

.btn-red {
  background: var(--711-green) !important;
  color: var(--711-white);
}

.btn-red:hover:not(:disabled) { background: var(--711-green-dark) !important; }
.btn-red:disabled { background: #ccc !important; cursor: not-allowed; }

.btn-secondary {
  background: var(--711-green);
  color: var(--711-white);
  padding: 10px 14px;
  font-size: 13px;
  border-radius: 3px;
  width: auto;
  flex-shrink: 0;
}

.btn-outline {
  background: var(--711-white);
  color: var(--711-text);
  border: 1px solid var(--711-border);
  margin-top: 12px;
}

.btn-line {
  background: #06c755;
  color: var(--711-white);
  margin-top: 20px;
  border-radius: 4px;
}

.btn-line:hover { background: #05a847; }

.reminder-box {
  background: var(--711-white);
  border-top: 1px solid var(--711-border);
  font-size: 13px;
}

.reminder-box summary {
  padding: 12px;
  cursor: pointer;
  font-weight: 700;
  color: var(--711-orange);
  list-style: none;
}

.reminder-box summary::-webkit-details-marker { display: none; }

.reminder-box ul {
  padding: 0 12px 12px 28px;
  color: var(--711-gray);
}

.reminder-box li { margin-bottom: 4px; }

.order-mini-summary {
  background: var(--711-white);
  padding: 12px;
  border-bottom: 1px solid var(--711-border);
}

.mini-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
}

.mini-row.highlight {
  background: #fff8ee;
  margin: 0 -12px;
  padding: 8px 12px;
  border-bottom: none;
}

.mini-label { color: var(--711-gray); }
.mini-total { font-weight: 700; color: var(--711-red); }
.mini-amount { font-size: 12px; color: var(--711-gray); padding-top: 4px; }

.form-section {
  background: var(--711-white);
  padding: 12px;
  border-bottom: 1px solid var(--711-border);
}

.form-section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--711-green);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--711-orange);
}

.form-section-value { font-size: 14px; font-weight: 700; }

.field { display: block; margin-bottom: 12px; }

.field-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

.field-label em {
  font-style: normal;
  color: var(--711-red);
  font-weight: 400;
  font-size: 12px;
}

.field input,
.form-section textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--711-border);
  border-radius: 3px;
  font: inherit;
  font-size: 14px;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
}

.checkbox-field input { width: auto; margin-top: 3px; accent-color: var(--711-orange); }

.hint, .email-note { font-size: 12px; color: var(--711-gray); margin-top: 4px; }

.privacy-row {
  font-size: 12px;
  margin: 0;
  background: var(--711-white);
  padding: 12px;
  border-bottom: 1px solid var(--711-border);
}

.store-input-row {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.store-input-row input { flex: 1; min-width: 0; }

.form-block {
  background: var(--711-white);
  border-bottom: 1px solid var(--711-border);
}

.form-block .ship-section-head em {
  font-style: normal;
  color: var(--711-red);
  font-weight: 400;
  font-size: 12px;
}

.form-field-stack {
  background: var(--711-white);
  border-bottom: 1px solid var(--711-border);
}

.form-field-stack .ship-section-head em {
  font-style: normal;
  color: var(--711-red);
  font-weight: 400;
  font-size: 12px;
}

.form-field-body {
  padding: 10px 12px;
  background: var(--711-white);
}

.form-field-body input,
.form-field-body textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--711-border);
  border-radius: 3px;
  font: inherit;
  font-size: 14px;
}

.form-block .hint,
.form-block .email-note {
  padding: 8px 12px 12px;
  margin: 0;
}

.form-block .checkbox-field {
  padding: 0 12px 12px;
  margin: 0;
}

.detail-section {
  background: var(--711-white);
  border-bottom: 1px solid var(--711-border);
}

.detail-section-title {
  background: var(--711-green);
  color: var(--711-white);
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.detail-section-title em {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
}

.detail-field-stack {
  border-bottom: 1px solid var(--711-border);
}

.detail-field-stack:last-child {
  border-bottom: none;
}

.detail-value-box {
  background: #f2f2f2;
  padding: 10px 12px;
  font-size: 14px;
  min-height: 42px;
  display: flex;
  align-items: center;
}

.detail-value-box--upload {
  display: block;
  padding: 12px;
  background: #f2f2f2;
}

.detail-value-box--upload .upload-dropzone {
  margin-top: 0;
}

.detail-value-box--upload:has(#upload-preview:not([hidden])) #btn-upload {
  display: none !important;
}

.detail-list {
  background: var(--711-white);
  padding: 12px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px 12px;
  font-size: 14px;
  border-bottom: 1px solid var(--711-border);
}

.detail-list dt { color: var(--711-gray); font-weight: 400; }
.detail-list dd { margin: 0; font-weight: 700; }

.detail-notes { font-size: 14px; padding: 4px 0; }

.upload-section {
  background: var(--711-white);
  padding: 12px;
  border-bottom: 1px solid var(--711-border);
}

.upload-box {
  border: 2px dashed var(--711-border);
  border-radius: 4px;
  padding: 16px;
  text-align: center;
  margin-top: 8px;
}

.upload-preview img {
  max-width: 100%;
  max-height: 180px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.remove-preview {
  background: none;
  border: 1px solid var(--711-red);
  color: var(--711-red);
  padding: 4px 12px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
}

.error-msg {
  color: var(--711-red);
  font-size: 13px;
  padding: 8px 12px;
  background: var(--711-white);
}

.load-error {
  color: var(--711-red);
  text-align: center;
  padding: 40px 12px;
  background: var(--711-white);
}

.page-footer {
  background: var(--711-white);
  border-top: 1px solid var(--711-border);
  padding: 16px 12px;
  text-align: center;
  margin-top: 8px;
}

.footer-links {
  font-size: 11px;
  color: var(--711-gray);
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-links a { color: var(--711-gray); }
.footer-links span { margin: 0 4px; }

.footer-note {
  font-size: 10px;
  color: #aaa;
  margin-bottom: 8px;
  line-height: 1.5;
}

.copyright { font-size: 10px; color: #aaa; }

.modal {
  border: none;
  border-radius: 8px;
  padding: 0;
  max-width: 92%;
  width: 400px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}

.modal::backdrop { background: rgba(0,0,0,.5); }

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--711-border);
  background: var(--711-green);
  color: var(--711-white);
}

.modal-header h3 { margin: 0; font-size: 15px; }

.modal-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--711-white);
  line-height: 1;
}

.modal-body { padding: 14px 16px; max-height: 65vh; overflow-y: auto; }

.modal-footer { padding: 0 16px 16px; }

.store-filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.store-filters select,
.store-filters input {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--711-border);
  border-radius: 3px;
  font: inherit;
}

.store-list { list-style: none; }

.store-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  font-size: 13px;
}

.store-list li:hover { background: #e8f5f0; }
.store-list .store-name { font-weight: 700; }
.store-list .store-addr { color: var(--711-gray); font-size: 12px; }

.store-loading { text-align: center; color: var(--711-gray); font-size: 13px; }

.text-modal-body { font-size: 13px; line-height: 1.7; }
.text-modal-body h4 { margin: 12px 0 6px; color: var(--711-green); }

.line-modal { max-width: 340px; }
.line-modal-body { text-align: center; padding: 24px 16px; }
.line-modal-body p { font-size: 15px; font-weight: 700; margin-bottom: 16px; }

.line-modal-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.line-modal-btns .btn-outline,
.line-modal-btns .btn-primary { border-radius: 4px; }

.line-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.line-modal-overlay[hidden] { display: none !important; }

.line-modal-card {
  pointer-events: auto;
  border: 1px solid var(--711-border);
  background: var(--711-white);
  border-radius: 8px;
  max-width: 340px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

body.completion-mode .breadcrumb,
body.completion-mode .steps {
  display: none;
}

.completion-header {
  background: var(--711-white);
  padding: 32px 12px 20px;
  text-align: center;
  border-bottom: 1px solid var(--711-border);
}

.completion-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--711-red);
  margin: 12px 0 6px;
}

.completion-tagline {
  font-size: 14px;
  color: var(--711-gray);
  margin: 0;
}

.completion-service-lines {
  list-style: none;
  background: var(--711-white);
  padding: 16px 12px;
  border-bottom: 1px solid var(--711-border);
}

.completion-service-lines li {
  color: var(--711-red);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 0;
  text-align: center;
}

.completion-service-lines li::before {
  content: "● ";
  font-size: 10px;
}

/* 7-ELEVEN 全屏门市查询 */
.store-screen {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: #fff;
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.store-screen[hidden] { display: none !important; }

.store-screen-header {
  background: #008061;
  color: #fff;
  padding: 12px 40px 12px 12px;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  text-align: center;
}

.store-screen-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

.store-screen-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
}

.store-field {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
}

.store-field .req { color: #e60012; }

.store-field select {
  display: block;
  width: 100%;
  margin-top: 4px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font: inherit;
  font-size: 14px;
  background: #fff;
}

.store-list-label {
  font-weight: 700;
  font-size: 14px;
  margin: 16px 0 10px;
}

.store-list-label .req { color: #e60012; }

.store-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.store-card-list li {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  background: #fff;
}

.store-card-list li:active { background: #f5f5f5; }

.store-card-list .store-name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.store-card-list .store-addr {
  font-size: 12px;
  color: #888;
}

/* 隐私同意页 */
.store-privacy-screen {
  flex-direction: column;
}

.privacy-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px 12px;
  font-size: 13px;
  line-height: 1.7;
}

.privacy-content p { margin-bottom: 10px; }

.privacy-actions {
  display: flex;
  border-top: 1px solid #ddd;
}

.btn-privacy-disagree,
.btn-privacy-agree {
  flex: 1;
  border: none;
  padding: 14px 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.4;
}

.btn-privacy-disagree {
  background: #fff9e6;
  color: #cc0000;
  border-right: 1px solid #ddd;
}

.btn-privacy-agree {
  background: #e8f4fc;
  color: #0066cc;
}

.privacy-footer {
  text-align: center;
  font-size: 10px;
  color: #aaa;
  padding: 8px;
}

/* 取货确认弹窗 */
.store-confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: #b8e4f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.store-confirm-overlay[hidden] { display: none !important; }

.store-confirm-box {
  background: #fffef5;
  border: 2px solid #008061;
  border-radius: 4px;
  padding: 20px 16px;
  width: 100%;
  max-width: 340px;
}

.store-confirm-title {
  text-align: center;
  color: #008061;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
}

.store-confirm-list {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px 10px;
  font-size: 13px;
  margin-bottom: 16px;
}

.store-confirm-list dt { color: #666; font-weight: 400; }
.store-confirm-list dd { margin: 0; font-weight: 700; word-break: break-all; }

.store-confirm-btns {
  display: flex;
  gap: 10px;
}

.btn-confirm-cancel,
.btn-confirm-ok {
  flex: 1;
  padding: 10px;
  background: #fff;
  border: 1px solid #999;
  border-radius: 3px;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
}

.ship-section-body--single {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
}

.ship-section-body--note {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--711-gray);
  line-height: 1.6;
}

.kv-amount {
  color: var(--711-red);
  font-weight: 700;
  font-size: 16px;
}

.upload-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 120px;
  margin-top: 8px;
  padding: 20px;
  border: 2px dashed var(--711-border);
  border-radius: 8px;
  background: #fafafa;
  color: var(--711-gray);
  cursor: pointer;
  font-family: inherit;
}

.upload-dropzone:hover {
  border-color: var(--711-green);
  background: #f0faf7;
  color: var(--711-green);
}

.upload-camera-icon {
  color: var(--711-green);
}

.upload-dropzone-text {
  font-size: 13px;
}

.upload-preview {
  position: relative;
  margin-top: 10px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--711-border);
}

.upload-preview img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}

.upload-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.upload-remove:hover {
  background: var(--711-red);
}

.completion-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--711-red);
  color: var(--711-white);
  font-size: 32px;
  font-weight: 700;
  line-height: 56px;
  margin: 0 auto;
}

.completion-actions {
  padding: 16px 12px 24px;
  background: var(--711-white);
}

.store-screen-body--modern {
  padding: 16px 12px 20px;
}

.store-filter-card {
  background: #fff;
  border: 1px solid var(--711-border);
  border-radius: 10px;
  padding: 14px 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.store-field--modern {
  margin-bottom: 12px;
}

.store-field--modern select {
  border-radius: 8px;
  border-color: #ddd;
  background: #fafafa;
}

.store-field--modern select:focus {
  outline: none;
  border-color: var(--711-green);
  background: #fff;
}

.store-card-list .store-card-item {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 0;
  margin-bottom: 10px;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.store-card-list .store-card-item:hover,
.store-card-list .store-card-item:active {
  border-color: var(--711-green);
  box-shadow: 0 2px 10px rgba(0, 128, 97, 0.12);
}

.store-card {
  padding: 12px 14px;
}

.store-card-name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--711-text);
}

.store-card-id {
  font-size: 11px;
  color: var(--711-green);
  font-weight: 700;
  margin-bottom: 6px;
}

.store-card-addr {
  font-size: 12px;
  color: var(--711-gray);
  line-height: 1.5;
}
