@media (min-width: 1024px) {
    
.menu-container {
    position: relative;
    display: inline-block;
}
    
div.header-nav > nav > ul   {
    padding: 0px 0px 0px 0px !important ;
    margin: 0px 0px 0px 0px !important ;
}

.menu-category > a ,
.menu-category > a:hover {
    text-decoration: none;
    font-size: 14px;
}

.menu-button {
    background: linear-gradient(345deg, #6A90A5, #81a2b4, #c3c3c3);
    color: #fafafa;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    width: 250px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0px !important;
}

.menu-button.active-button {
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    background: linear-gradient(345deg, #537080, #698290, #959393);
}

.menu-button:hover {
    background: linear-gradient(345deg, #537080, #698290, #959393);
}

.menu-dropdown {
    display: none;
    font-weight: 400;
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    background: linear-gradient(345deg, #6A90A5, #81a2b4, #c3c3c3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
    border-bottom-left-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
    z-index: 0;
}

.menu-dropdown.active,
.menu-dropdown:hover,
div.header-nav > nav > ul > li:last-of-type,
div.header-nav > nav > ul > li:last-of-type:hover,
div.header-nav > nav > ul > li:last-of-type.active{
    display: block ;
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
    border-bottom-left-radius: 20px !important;
    border-bottom-right-radius: 0px !important;
    z-index: 1;
}

.menu-category {
    padding: 12px;
    cursor: pointer;
    display: flex;
    align-content: space-around;
    font-size: 14.6px;
    color: #fafafa;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;

}

.menu-text  {
    align-content: center;
    text-align: center;
}

.menu-category > a {
    display: flex;
    align-content: space-around;
    color: #fafafa;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 226px;
}

.menu-category il {
    font-size: 14.8px;
}

.menu-category:hover,
.menu-category:active   {
    background: linear-gradient(345deg, #537080, #698290, #959393);
    color: #007bff;
    border-left: 4px solid #007bff;
    width: 226px;
}

.right-icon  {
    width: 30px;
    height: auto;
}

.left-icon  {
    width: 20px;
    height: auto;
    max-width: 20%;
}
.tag {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    color: white;
}

.hot { background: #FF5733; }
.latest { background: #8A2BE2; }
.new { background: #3498DB; }

.mega-menu {
    display: none;
    width: 100%;

}

.mega-menu.active {
    display: block;
}


.image-column img {
    width: 100%;
    border-radius: 5px;
}

.menu-dropdown.active {
    display: block;
    height: 215px;
    min-height: 215px;
}

.menu-button.active-button {
    color: white;
    border-radius: 5px 5px 0 0;
}

.mega-menu-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 250px;
    max-width: 1120px;
    width: 100%;
    background: #f9f9f9;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translateY(10px);
    height: 437px;
    border-top-left-radius: 0px !important;
    border-top-right-radius: 20px !important;
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 20px !important;
}

.mega-menu-container.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
    max-height: 324px;
    height:auto;
    z-index: 1;
    background: #f9f9f9;
    overflow-x: scroll;
    width: calc(100vw - 250px);
    max-width: 950px;
    overflow-y: hidden;
}

.mega-menu.active div div a {
    color: #393939;
    margin: 4px 0;
    padding-bottom: 4px;
    transition: color 0.4s ease-in-out;
    text-decoration: none;
}

.mega-menu.active div div a:hover {
    color: #6A90A5;
    text-decoration: none;
}

.sub-title  {
    font-size: 15.5px;
    text-decoration: underline;
}

.mega-menu.active {
    display: flex;
    align-content: flex-start;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 950px;
    width: calc(100vw - 250px);
    left: 250px;
    height: 215px;
    min-height: 215px;
}


.mega-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: start;
  padding: 20px;
  max-width: 950px;
  margin: 0 auto;
  height: auto;
}

.mega-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mega-column a,
.mega-column h1.sub-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  text-align: center;
  color: #393939;
  font-size: 15px;
  text-decoration: none;
  width: 100%;
  height: auto;
  transition: transform 0.2s ease-in-out;
}

.mega-column a:hover img.title-icon {
  transform: scale(1.1);
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.3);
}

img.title-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  background: #e4e4e4;
}


.mega-menu.active div div h.sub-title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.mega-menu.active div div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.mega-menu.active#furniture div div {
    width: 160px;
}

.Custom {
        width: 170px !important;
}

#custom-production > div > div.mega-column.custom-production > img  {
    width: 420px!important;
    height: auto;
    border-radius: 20px;
    border: 2px solid #ddd;    
}
.mega-column.Custom-production {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    width: 100%;
}    

#hardware > div > div > a > h > img ,   #home-design > div > div > a > h > img {
    width: 130px;
    height: auto;
    border: 1.4px solid #ddd;   
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}


#hardware > div > div > a > h > img:hover ,
#home-design > div > div > a > h > img:hover  {

    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
    border: 2px solid #272727;   
}

#hardware > div > div > a > h,
#home-design > div > div > a > h {
    text-decoration: none;
    font-size: 16px;
    color: #393939;
}

#hardware > div > div > a > h:hover,
#home-design > div > div > a > h:hover {
    text-decoration: none;
    font-size: 16px;
    transform: scale(1.05);
    color: #6A90A5;
}






#premium-jewelry > div {display: flex;align-content: flex-start;width: 100%;justify-content: space-evenly;gap: 0;padding: 0 20px;flex-direction: column;height: 324px;overflow: hidden;}

#premium-jewelry > div > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
}

#premium-jewelry > div > div> a {
    width: 30%;
}

#premium-jewelry > div > div> a > h1 > img {margin-bottom: 4px;}

#premium-jewelry > div > div > div > a > img {
    width: 75px;
    height: 75px;
    border: 1px solid #ddd;
    border-radius: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#premium-jewelry > div > div > div > a > img:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

#premium-jewelry > div > div > div > a > div {
    font-size: 14px;
    margin-top: 7px;
}

#premium-jewelry > div > div > a > h1 {
    font-size: 18px;
    color: #b7a561;
}
}




