.locked-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  min-height: 100vh;
  background: #f6f7f9;
}

.locked-card {
  max-width: 450px;
  background: #fff;
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  text-align: center;
}

.locked-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #1e1e1e;
}

.locked-message {
  font-size: 1rem;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.5;
}

.btn-buy {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-radius: 10px;
  background: #4a6cf7;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-buy:hover {
  background: #3f5fe0;
}

.link-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.9rem;
  color: #4a6cf7;
  text-decoration: none;
}

.locked-image img {
  width: 120px;
  opacity: 0.85;
  margin-top: 28px;
}

