.model-grid-page {
  padding: 3rem 1rem;
  text-align: center;
}

.model-grid-page h1 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #04615f;
}

.model-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

/* Reuse the brand-box style for models */

.model-grid .model-box {
  position: relative;
  width: 180px;
  height: 120px;
  border: 2px solid #04615f;
  border-radius: 12px;
  color: #033632;
  background-color: white;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  line-height: 120px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.model-grid .model-box::after {
  content: "Se prisen";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(246, 154, 79, 0.9); /* transparent orange */
  color: #030202;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.model-grid .model-box:hover::after {
  transform: translateY(0);
}

.model-grid .model-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
