.workshop-page-box {
  max-width: 980px;
  margin: 0 auto;
}

.workshop-page {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.workshop-intro h2 {
  margin: 0 0 8px;
}

.workshop-intro p {
  margin: 0;
  color: #b8b8b8;
  line-height: 1.5;
}

.workshop-message {
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
}

.workshop-message.ok {
  background: rgba(60, 160, 80, 0.16);
  border: 1px solid rgba(60, 160, 80, 0.32);
  color: #b8f0c2;
}

.workshop-message.error {
  background: rgba(180, 70, 70, 0.16);
  border: 1px solid rgba(180, 70, 70, 0.32);
  color: #ffb7b7;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.workshop-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 12px;
}

.workshop-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 12px;
  position: relative;
}

.workshop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.workshop-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 45%,
    rgba(0,0,0,0.22)
  );
}

.workshop-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.workshop-card-desc {
  color: #b8b8b8;
  line-height: 1.45;
  margin-bottom: 12px;
}

.workshop-cost {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 12px;
}

.workshop-cost-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #c8b27a;
  margin-bottom: 8px;
}

.workshop-cost-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
  padding: 4px 0;
}

.workshop-ok {
  color: #89d89b;
  font-weight: 700;
}

.workshop-missing {
  color: #ff9a9a;
  font-weight: 700;
}

.workshop-output {
  margin-bottom: 12px;
  font-size: 14px;
  color: #d7d7d7;
}

.workshop-form {
  margin-top: auto;
}

.workshop-btn {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(180deg, #d6ab55 0%, #a97a26 100%);
  color: #1a1206;
}

.workshop-btn:hover {
  filter: brightness(1.05);
}

.workshop-btn-disabled {
  cursor: default;
  background: #4b4f58;
  color: #d2d5da;
}

@media (max-width: 700px) {
  .workshop-grid {
    grid-template-columns: 1fr;
  }
}
