html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.shop-intro {
    text-align: center;
    margin: 50px auto;
    max-width: 800px;
}
.shop-intro h1 {
    font-size: 3rem;
    color: #a011ff;
    margin-bottom: 10px;
}
.shop-intro p {
    font-size: 1.3rem;
    color: #ccc;
}

.shop-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.shop-card {
  background: linear-gradient(180deg, #1d222b, #161a21);
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

.shop-title {
  font-size: 1.6rem;
  background: linear-gradient(90deg, #a011ff, #d6c6d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.shop-description {
  color: #bdbdbd;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.shop-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
}

.shop-button {
  padding: 10px 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, #a011ff, #6a00ff);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.shop-button:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.shop-card.featured {
  border: 2px solid #a011ff;
  position: relative;
}

.shop-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -14px;
  right: 20px;
  background: #a011ff;
  color: white;
  padding: 6px 14px;
  font-size: 0.8rem;
  border-radius: 20px;
}

