.page-new-arrivals {
    max-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
.error-page {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background-color: #111111ac;
    color: #fff;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    border-bottom: solid orange 3px;
  }
  
  .error-container {
    max-width: 600px;
  }
  
  .error-title {
    font-size: 8rem;
    margin: 0;
    color: orange;
    letter-spacing: 4px;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .error-message {
    font-size: 1.5rem;
    margin: 20px 0;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .error-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: orange;
    color: #111;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid orange;
    transition: all 0.2s ease;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .error-link:hover {
    background: transparent;
    color: orange;
  }
  