html, body {
    height: 100%;
    margin: 0;
    background: url('img/97.jpg') center center no-repeat fixed;
    background-size: cover;
    font-family: sans-serif;
  }
  
  
  body.noscroll {
    overflow: hidden;
  }
  
 
  
  
/* OBRAZ KATALOGU */
#catalog-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
    padding-top: 30px;     /* odstęp od góry */
    padding-bottom: 60px;  /* większy odstęp od dołu, by było widać tło */
    min-height: calc(100vh - 90px); /* pełna wysokość z uwzględnieniem paddingu */
  }
  
  
  
  
  #catalog-page {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
    z-index: 1;
  }
  
  
 /* STRZAŁKI W MENU DOLNYM */
#bottom-menu .arrow {
    width: 60px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    cursor: pointer;
    margin-top: 2px; /* drobne wyrównanie do przycisków */
  }
  
  #bottom-menu .arrow:hover {
    opacity: 1;
  }
  
  
  
  .arrow:hover {
    opacity: 1; /* po najechaniu pełna widoczność */
  }
  
  
  
  /* MENU DOLNE */
  #bottom-menu {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 10;
  }
  
  #menu-toggle {
    padding: 10px 20px;
    font-size: 16px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  #contact-button img {
    width: 40px;
    height: auto;
    cursor: pointer;
  }
  
  /* WYSUWANE MENU */
  #side-menu {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
    border-radius: 8px;
    z-index: 20;
    display: none;
  }
  
  #side-menu.show {
    display: block;
  }
  
  #side-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin: 6px 0;
    padding: 6px;
    transition: background 0.2s;
  }
  
  #side-menu a:hover {
    background: #444;
  }
  