.stores-page {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.stores-hero {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 60px 20px;
  box-sizing: border-box;
}

.stores-hero-image {
  width: 100%;
  max-width: 1910px;
  height: auto;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 0;
}

.store-card {
  min-width: 0;
}

.store-image {
  width: 100%;
  height: auto;
  aspect-ratio: 600 / 325;
  object-fit: cover;
  display: block;
}

.store-info {
  padding-top: 20px;
}

.store-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.store-dot {
  background-color: #000;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.store-title {
  color: #000;
  font-size: 21px;
  font-family: OPPOSans-Bold;
  font-weight: 700;
  white-space: nowrap;
}

.store-address {
  display: block;
  color: #000;
  font-size: 16px;
  font-family: OPPOSans;
  line-height: 1.5;
  margin-bottom: 12px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  border-radius: 6px;
  padding: 8px 24px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.store-button:hover {
  opacity: 0.8;
}

.store-button span {
  color: rgba(215, 215, 215, 1);
  font-size: 12px;
  font-family: MicrosoftYaHei-Bold;
  font-weight: 700;
}

.stores-footer {
  background: #000;
  margin-top: 120px;
  width: 100%;
  padding: 80px 20px;
  box-sizing: border-box;
}

.stores-footer-logo {
  width: 143px;
  height: 189px;
  margin: 0 auto;
}

.stores-footer-logo-img {
  width: 100%;
  height: auto;
}

.stores-footer-info {
  max-width: 869px;
  margin: 50px auto 0;
  text-align: center;
}

.stores-footer-text-wrapper {
  font-size: 0;
  font-family: MicrosoftYaHei;
}

.stores-footer-text {
  color: #fff;
  font-size: 16px;
  font-family: MicrosoftYaHei;
  line-height: 24px;
}

.stores-footer-copyright {
  color: rgba(93, 92, 92, 1);
  font-size: 13px;
  font-family: MicrosoftYaHei;
  line-height: 24px;
  margin-top: 10px;
}

.stores-footer-qrcode {
  width: 242px;
  height: 33px;
  margin: 20px auto 0;
}

.stores-bg-overlay {
  height: 900px;
  background: url(./img/b1408e1f6b1b433cb3b02d368ac54abf_mergeImage.jpg) center / cover no-repeat;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.stores-header {
  width: 100%;
  height: 99px;
  background: #000;
}

.stores-header-logo {
  width: 144px;
  height: 49px;
  margin: 26px 0 0 298px;
}

.stores-header-nav-item {
  width: 97px;
  height: 24px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  font-family: MicrosoftYaHei;
  text-align: center;
  white-space: nowrap;
  line-height: 40px;
  margin: 44px 0 0 426px;
}

.stores-header-nav-item-alt {
  width: 100px;
  height: 25px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  font-family: MicrosoftYaHei;
  text-align: center;
  white-space: nowrap;
  line-height: 40px;
  margin: 43px 0 0 119px;
}

.stores-header-nav-item-third {
  width: 100px;
  height: 25px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  font-family: MicrosoftYaHei;
  text-align: center;
  white-space: nowrap;
  line-height: 40px;
  margin: 43px 0 0 116px;
}

.stores-header-nav-item-fourth {
  width: 99px;
  height: 23px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  font-family: MicrosoftYaHei;
  text-align: center;
  white-space: nowrap;
  line-height: 40px;
  margin: 44px 304px 0 117px;
}

@media (max-width: 1200px) {
  .stores-grid {
    gap: 40px;
  }
  
  .store-title {
    font-size: 18px;
  }
  
  .store-address {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .stores-hero {
    padding: 40px 15px;
  }
  
  .stores-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px 0;
  }
  
  .store-title {
    font-size: 16px;
  }
  
  .store-address {
    font-size: 13px;
  }
  
  .store-button {
    padding: 6px 18px;
  }
  
  .store-button span {
    font-size: 11px;
  }
  
  .stores-footer {
    margin-top: 80px;
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .stores-hero {
    padding: 30px 10px;
  }
  
  .stores-grid {
    gap: 20px;
  }
  
  .store-title-row {
    flex-wrap: wrap;
  }
  
  .store-title {
    font-size: 14px;
    white-space: normal;
  }
  
  .store-address {
    font-size: 12px;
  }
  
  .store-dot {
    width: 10px;
    height: 10px;
  }
  
  .stores-footer {
    margin-top: 60px;
    padding: 40px 10px;
  }
  
  .stores-footer-text {
    font-size: 14px;
  }
  
  .stores-footer-copyright {
    font-size: 11px;
  }
}
