/* Custom CSS for fixing dropdown menu scroll issues */

@media screen and (min-width: 992px)
{
  .dropdown-menu {
    overflow: visible !important;
    max-height: none !important;
    position: absolute !important;
    transform: none !important;
    top: 100% !important;
    left: 0 !important;
    will-change: auto !important;
    width: auto !important;
    height: auto !important;
  }
  .navbar .dropdown-menu 
  {
    margin-top: 0;
    border: none;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }

}


@media screen and (max-width: 992px)
{

  .dropdown-menu 
  {
   display:none;
  }

}


.navbar-nav li:hover > .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure submenus can extend outside their parent containers */
.navbar .dropdown-menu {
    max-width: none;
    width: auto !important;
    overflow: visible !important;
    z-index: 1050 !important;
}

/* Fully remove height/width restrictions */
.dropdown-menu {
    max-height: none !important;
    min-height: auto !important;
    height: auto !important;
    max-width: none !important;
    width: auto !important;
    overflow: visible !important;
}

/* Add more space for dropdown menus */

/* Fix for scrollbars on bootstrap dropdowns */
.perfect-scrollbar-on .dropdown-menu {
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
}

.perfect-scrollbar-on .ps {
    overflow: visible !important;
}

.ps {
    overflow: visible !important;
    height: auto !important;
}

.ps__rail-x, .ps__rail-y {
    display: none !important;
}




.page-title
{
  display:none;
}


.logo-img
{
margin-top:15px;
}

.navbar-expand-lg
{
  margin-top:-20px;
}


#maincontent
{
  margin-top:100px;
}

/* Product Badge/Bandarole Styles */
.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.product-badge.badge-new {
    background-color: #28a745;
    color: #ffffff;
}

.product-badge.badge-sale {
    background-color: #dc3545;
    color: #ffffff;
}

/* Multiple badges support */
.product-badge-wrapper {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 10;
} 