/*====================================

MEGA MENU

====================================*/

.mega-dropdown{

position:static;

}

.mega-menu{

position:absolute;

left:0;

top:100%;

width:100%;

background:#FFF8EC;

padding:40px 0;

box-shadow:0 15px 40px rgba(0,0,0,.12);

opacity:0;

visibility:hidden;

transform:translateY(20px);

transition:.35s;

z-index:999;

border-top:3px solid #FEAD42;

}

.mega-dropdown:hover .mega-menu{

opacity:1;

visibility:visible;

transform:translateY(0);

}

.mega-title{

color:#3E2A16;

margin-bottom:25px;

font-weight:700;

}

.mega-link{

display:flex;

align-items:center;

padding:15px;

border-radius:12px;

text-decoration:none;

margin-bottom:15px;

transition:.3s;

background:white;

}

.mega-link:hover{

background:#FEAD42;

transform:translateX(8px);

}

.mega-thumb{

width:70px;

height:70px;

object-fit:contain;

margin-right:15px;

}

.mega-link strong{

display:block;

color:#3E2A16;

}

.mega-link small{

color:#777;

}

.mega-banner{

background:white;

padding:25px;

border-radius:18px;

text-align:center;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.mega-banner img{

height:240px;

object-fit:contain;

margin-bottom:20px;

}

.mega-banner h3{

color:#3E2A16;

font-weight:700;

}

.mega-banner p{

color:#666;

margin:15px 0;

}