#message {
  position: fixed;
  top: 20%;
  right: 20px;
  width: 25%;
  z-index: 9999;
}

.home-slider-sidebar li:after{
    border-top: 6px solid !important;
    width: 30px  !important;
}

select.form-control:not([size]):not([multiple]) {
    height: 4rem;
}

.pagination {
    display: flex !important;
    justify-content: center !important;
    padding-left: 0 !important;
    list-style: none !important;
    margin: 20px 0 !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
}

.page-item {
    display: inline !important;
}

.page-link {
    position: relative !important;
    display: block !important;
    padding: 8px 14px !important;
    margin-left: 0 !important;
    line-height: 1.25 !important;
    color: #706f6c !important;
    background-color: #fff !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out !important;
}

.page-link:hover {
    background-color: #706f6c !important;
    color: #fff !important;
    border-color: #706f6c !important;
}

.page-item.active .page-link {
    z-index: 1 !important;
    color: #fff !important;
    background-color: #706f6c !important;
    border-color: #706f6c !important;
    font-weight: bold !important;
    pointer-events: none !important;
}

.page-item.disabled .page-link {
    color: #6c757d !important;
    pointer-events: none !important;
    background-color: #f1f1f1 !important;
    border-color: #dee2e6 !important;
}

/*carousel*/
.home-slide.banner {
    position: relative;
    overflow: hidden;
}

.slide-picture, 
.slide-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-slide.banner {
    min-height: 300px; /* pentru mobil */
}

@media (min-width: 768px) {
    .home-slide.banner {
        min-height: 450px;
    }
}

@media (min-width: 1200px) {
    .home-slide.banner {
        min-height: 500px; /* potrivit pentru 1920x500 */
    }
}
/*carouse*/

/*header custom*/

/* --- MOBILE (sau sub un anumit breakpoint) --- */
@media (max-width: 576px) {

  /* Asigurăm layout vertical general pentru header-middle */
  .header-middle .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  /* header-left (logo + meniu mobil) rămâne sus */
  .header-middle .header-left {
    width: 100%;
    margin-bottom: 10px;
  }

  /* header-right ocupă tot width-ul și are layout flexibil */
  .header-middle .header-right {
    width: 100%;
    display: flex;
    /*flex-direction: column;*/
    /*align-items: flex-start;*/
    /*gap: 10px;*/
  }

  /* UL din header-right: vertical, full width */
  .header-middle .header-right ul.menu {
/*    display: block !important;
    width: 100%;*/
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .header-middle .header-right ul.menu li {
    display: block;
    /*width: 100%;*/
    /*margin: 5px 0;*/
    /*float: none !important;  elimina float-right de pe li-urile vechi */
  }

  /* Ascundem li-ul cu bara „|” */
  .header-middle .header-right li.space {
    display: none !important;
  }

  /* Dropdown-urile (wishlist, cart etc.) să fie inline / inline-flex, lângă sau sub UL */
  .header-middle .header-right > .dropdown,
  .header-middle .header-right .cart-dropdown {
    /*display: inline-flex;*/
    align-items: center;
    width: auto;
  }

  /* Dacă vrei să le aliniezi orizontal printre ele */
  .header-middle .header-right {
    flex-wrap: wrap;
  }
}


/*header custom*/