/* Stickers Showcase CSS */
.stickers-wrapper {
  padding-top: 7rem;
  padding-bottom: 5rem;
  min-height: 100vh;
}

.stickers-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.stickers-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.stickers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.sticker-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #09090e;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.sticker-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(245, 213, 71, 0.1);
}

.sticker-img-box {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 1rem;
  background: radial-gradient(circle at center, rgba(245, 213, 71, 0.1), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 1rem;
}

.sticker-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.sticker-card:hover .sticker-img-box img {
  transform: scale(1.1);
}

.sticker-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.8rem;
}

.sticker-dl-btn {
  width: 100%;
  padding: 0.6rem;
  font-size: 0.82rem;
  text-align: center;
}
