/* 首页焦点轮播（参考 zgddh） */
.bx-focus {
  background: radial-gradient(circle at 85% 12%, rgba(201, 165, 95, 0.18) 0%, #fff 42%),
    linear-gradient(180deg, #ffffff 0%, #faf8f4 100%);
  border-bottom: 1px solid #ebe4d6;
  padding: 22px 0 26px;
}

.bx-focus-carousel {
  position: relative;
}

.bx-focus-main {
  display: none;
  grid-template-columns: 1.05fr 1fr;
  gap: 22px;
  align-items: center;
  background: #fff;
  border: 1px solid #e8e0d0;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 16px 36px rgba(26, 20, 8, 0.08);
}

.bx-focus-main.is-active {
  display: grid;
}

.bx-focus-copy h1,
.bx-focus-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.8vw, 1.95rem);
  line-height: 1.3;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.bx-focus-copy p {
  margin: 0 0 14px;
  color: #555;
  line-height: 1.75;
  font-size: 15px;
}

.bx-focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.bx-focus-tags span {
  font-size: 12px;
  color: #7c5a10;
  background: #fff9ee;
  border: 1px solid #e8d4a8;
  padding: 4px 10px;
  border-radius: 999px;
}

.bx-focus-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.bx-focus-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid #c9a55f;
  color: #7c5a10;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.bx-focus-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 165, 95, 0.25);
}

.bx-focus-btn--primary {
  background: #c9a55f;
  color: #1a1208;
  border-color: #c9a55f;
}

.bx-focus-btn--primary:hover {
  background: #d4b46a;
  color: #120c04;
}

.bx-focus-media {
  border-radius: 14px;
  border: 1px solid #e8e0d0;
  overflow: hidden;
  background: #f5f5f5;
  min-height: 260px;
}

.bx-focus-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
}

.bx-focus-cards {
  display: grid;
  gap: 10px;
}

.bx-focus-card {
  border: 1px solid #ebe4d6;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fffdf8;
}

.bx-focus-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  color: #8b6914;
}

.bx-focus-card p {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.55;
}

.bx-focus-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.bx-focus-dot {
  width: 22px;
  height: 6px;
  border-radius: 999px;
  border: 1px solid #e8d4a8;
  background: #f5efe3;
  cursor: pointer;
  padding: 0;
}

.bx-focus-dot.is-active {
  background: #c9a55f;
  border-color: #c9a55f;
}

/* 门店卡片（参考 zgddh） */
.bx-store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.bx-store-card {
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.bx-store-card:hover {
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
  transform: translateY(-3px);
}

.bx-store-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.bx-store-panel-head {
  position: relative;
  padding: 16px 16px 12px;
  border-bottom: 1px solid #f0f0f0;
  min-height: 88px;
}

.bx-store-panel-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-right: 84px;
}

.bx-store-panel-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, #fff9ee, #f5efe3);
  border: 1px solid #e8d4a8;
  color: #a67c00;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bx-store-panel-title h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  color: #1a1a1a;
  font-weight: 700;
}

.bx-store-thumb {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  z-index: 2;
  display: block;
  background: #e8ecf1;
}

.bx-store-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bx-store-thumb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 9px;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 2px 0;
  line-height: 1.2;
}

.bx-store-panel-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  padding-left: 46px;
}

.bx-store-district {
  font-size: 12px;
  color: #555;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  padding: 2px 10px;
}

.bx-store-badge-open {
  font-size: 12px;
  font-weight: 700;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 999px;
  padding: 2px 10px;
}

.bx-store-panel-body {
  padding: 14px 16px;
  flex: 1;
}

.bx-store-line {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

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

.bx-store-line i {
  color: #c9a55f;
  margin-top: 3px;
  flex-shrink: 0;
}

.bx-store-line a {
  color: #8b6914;
  font-weight: 600;
}

.bx-store-line a:hover {
  color: #c9a55f;
}

.bx-store-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px 12px;
}

.bx-store-tags-row span {
  font-size: 12px;
  color: #666;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 999px;
  padding: 2px 8px;
}

.bx-store-panel-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 16px 16px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
}

.bx-store-btn-map,
.bx-store-btn-call {
  flex: 1 1 auto;
  min-width: 120px;
  text-align: center;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.bx-store-btn-map {
  border: 1px solid #d4d4d4;
  color: #444;
  background: #fafafa;
}

.bx-store-btn-map:hover {
  border-color: #c9a55f;
  color: #7c5a10;
}

.bx-store-btn-call {
  background: #c9a55f;
  color: #1a1208;
  border: 1px solid #c9a55f;
}

.bx-store-btn-call:hover {
  background: #d4b46a;
}

@media (max-width: 992px) {
  .bx-focus-main.is-active {
    grid-template-columns: 1fr;
  }

  .bx-focus-media {
    min-height: 200px;
    order: -1;
  }

  .bx-focus-media img {
    min-height: 200px;
  }

  .bx-store-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .bx-focus {
    padding: 16px 0 20px;
  }

  .bx-focus-main {
    padding: 16px;
  }
}
