.shop-section {
  position: relative;
  z-index: 2;
}

.shop-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.shop-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.shop-status {
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  border: 1px solid rgba(245, 197, 24, 0.4);
  background: rgba(245, 197, 24, 0.1);
  color: #ffe9a0;
  font-size: 0.88rem;
  font-weight: 700;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.shop-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--surface);
  transform: translateY(0);
  transition: transform 0.2s ease, border-color 0.2s ease;
  animation: rise 0.7s ease both;
}

.shop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 197, 24, 0.45);
}

.shop-card:nth-child(2) { animation-delay: 0.05s; }
.shop-card:nth-child(3) { animation-delay: 0.1s; }
.shop-card:nth-child(4) { animation-delay: 0.15s; }
.shop-card:nth-child(5) { animation-delay: 0.2s; }
.shop-card:nth-child(6) { animation-delay: 0.25s; }

.shop-card-media {
  aspect-ratio: 1;
  background: #10141c;
  display: grid;
  place-items: center;
  padding: 0.8rem;
}

.shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.shop-card-body {
  padding: 0.95rem 1rem 1.1rem;
}

.shop-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.shop-card-body p {
  margin: 0 0 0.7rem;
  font-size: 0.85rem;
}

.shop-price {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.4);
  color: #ffe9a0;
  font-size: 0.82rem;
  font-weight: 800;
}

@media (max-width: 1000px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
