/* LAODENG LDU STORE */

.store-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 24px 80px;
  overflow: hidden;
  text-align: center;
}

.store-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(88, 113, 255, 0.25),
      rgba(37, 198, 255, 0.10) 42%,
      transparent 72%
    );
  filter: blur(10px);
  pointer-events: none;
}

.store-hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 13px;
  border: 1px solid rgba(91, 174, 255, 0.3);
  border-radius: 999px;
  color: rgba(225, 241, 255, 0.92);
  background: rgba(67, 111, 255, 0.08);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.store-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5edbff;
  box-shadow: 0 0 14px rgba(94, 219, 255, 0.9);
}

.store-title {
  margin: 0;
  font-size: clamp(42px, 8vw, 88px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.store-title span {
  display: block;
  background: linear-gradient(100deg, #ffffff, #68dcff 48%, #8e78ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.store-lead {
  max-width: 720px;
  margin: 25px auto 0;
  color: rgba(220, 231, 247, 0.75);
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.8;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.store-button-disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.store-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 75px 0;
}

.store-section-header {
  max-width: 760px;
  margin-bottom: 30px;
}

.store-section-header h2 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 5vw, 48px);
}

.store-section-header p {
  color: rgba(215, 228, 245, 0.68);
  line-height: 1.8;
}

.store-category-grid,
.store-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.store-category-card,
.store-process-card,
.store-empty,
.store-rule-card {
  border: 1px solid rgba(107, 155, 255, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(
      145deg,
      rgba(18, 26, 54, 0.72),
      rgba(5, 10, 27, 0.88)
    );
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.store-category-card {
  min-height: 210px;
  padding: 25px;
}

.store-category-icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border: 1px solid rgba(92, 200, 255, 0.27);
  border-radius: 14px;
  background: rgba(70, 144, 255, 0.09);
  font-size: 23px;
}

.store-category-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.store-category-card p {
  margin: 0;
  color: rgba(210, 225, 244, 0.65);
  line-height: 1.7;
}

.store-empty {
  padding: 65px 25px;
  text-align: center;
}

.store-empty-symbol {
  display: flex;
  width: 82px;
  height: 82px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 1px solid rgba(96, 202, 255, 0.3);
  border-radius: 24px;
  background: rgba(74, 126, 255, 0.08);
  color: #8de4ff;
  font-size: 32px;
  font-weight: 800;
  box-shadow: 0 0 38px rgba(69, 155, 255, 0.15);
}

.store-empty h2 {
  margin: 0 0 15px;
  font-size: clamp(25px, 4vw, 38px);
}

.store-empty p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(212, 226, 244, 0.67);
  line-height: 1.9;
}

.store-process-card {
  position: relative;
  padding: 26px;
}

.store-process-number {
  margin-bottom: 22px;
  color: #71dfff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.store-process-card h3 {
  margin: 0 0 9px;
}

.store-process-card p {
  margin: 0;
  color: rgba(210, 224, 244, 0.64);
  line-height: 1.7;
}

.store-rule-card {
  padding: 28px;
}

.store-rule-card ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(216, 229, 246, 0.7);
  line-height: 2;
}

@media (max-width: 850px) {
  .store-category-grid,
  .store-process-grid {
    grid-template-columns: 1fr;
  }

  .store-hero {
    min-height: auto;
    padding-top: 125px;
  }

  .store-section {
    width: min(100% - 28px, 1180px);
    padding: 55px 0;
  }
}
