/* .shop-container {
  width: 1180px;
  max-width: 1180px;
} */

.shop-intro {
  margin-bottom: 2rem;
}

.shop-title {
  font-size: 2.25rem;
  margin: 0 0 .5rem 0;
  font-weight: 800;
}

.shop-sub {
  margin: 0;
  color: var(--shop-muted);
  font-size: 1.125rem;
}

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

.shop-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .16s ease, border-color .16s ease;
  height: 100%;
}

.shop-card:hover {
  transform: translateY(-6px);
  border-color: var(--gradient-color-1);
}

.shop-media {
  height: 10rem;
  background: linear-gradient(90deg, var(--gradient-color-1), var(--gradient-color-2));
}

.shop-body {
  padding: 1rem 1rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.shop-item-rarity {
  font-size: 0.85rem;
  color: var(--gradient-color-1);
  font-weight: 700;
}

.shop-item-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  color: white;
}

.shop-item-desc {
  margin: 0;
  color: var(--shop-muted);
  font-size: .95rem;
}

.shop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.shop-price {
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--gradient-color-1);
}

.shop-buy {
  background: linear-gradient(90deg, var(--gradient-color-1), var(--gradient-color-2));
  color: white;
  border: 0;
  padding: .45rem .9rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.shop-buy:hover {
  opacity: 0.95;
}

/* media variants reuse existing classes from news/forum */
.media-primary {
  background: linear-gradient(90deg, var(--gradient-color-1), var(--gradient-color-2));
}

.media-accent {
  background: linear-gradient(90deg, var(--gradient-color-2), var(--gradient-color-1));
}

/* small accessibility */
.shop-card:focus-within {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(-6px);
}

.shop-timer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.shop-timers-container {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  max-width: 40rem;
}

.shop-timer-intro {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.shop-timer {
  flex: 1;
  background: var(--bg-card);
  padding: 1rem;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.shop-timer span {
  color: white;
  text-align: center;
  font-weight: 600;
  font-size: 5rem;
}

.shop-timer p {
  text-align: center;
  font-size: 2rem;
}


.shop-timer-title {
  font-size: 5.5rem;
  text-align: center;
  margin: 0 0 0.5rem 0;
  width: fit-content;
}

.shop-timer-sub {
  color: var(--second-main);
  font-size: 1.5rem;
  text-align: center;
  word-break: normal;
  max-width: 42rem;
}

@media (max-width: 580px) {
  .shop-container {
    margin: 6rem 0 12rem;
  }
  .shop-timers-container {
    flex-direction: column;
  }
  .shop-timers-container {
    width: 80%;
  }
  .shop-timer {
    width: 100%;
  }
  .shop-timer-container {
    margin-bottom: 6rem;
  }
}

@media (max-width: 460px) {
  .shop-timer-title {
    font-size: 4.5rem;
  }
}

@media (max-width: 395px) {
  .shop-timer-title {
    font-size: 3.5rem;
  }
}