/* Card 4: Image choice grid */
.static-image-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.static-image-block {
  text-align: center;
  padding: 20px;
  border: 2px solid transparent;
  border-radius: 18px;
  background-color: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease;
  max-width: 340px;
  width: 100%;
  cursor: pointer;
}

.static-image-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.static-image-block.selected {
  border-color: #ff9b40;
  background-color: #fff4e8;
  box-shadow: 0 0 0 4px rgba(255, 169, 67, 0.3);
}

.static-image-block img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 16px;
  display: block;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.static-image-block button {
  background-color: #ff9b40;
  color: white;
  border: none;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.static-image-block button:hover {
  background-color: #ff7b00;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.static-image-block button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Optional mobile tweak */
@media (max-width: 600px) {
  .static-image-block {
    max-width: 90%;
  }
}
