/* =====================================================
   GLOBAL MENU COLOR & FONT LOCK
===================================================== */
:root {
    --menu-color: #1f2937;        /* single text color */
    --menu-hover-bg: #f3f4f6;
    --menu-border: #e5e7eb;
    --menu-bg: #ffffff;
}

/* FORCE SAME FONT & SIZE ON ALL MENU CONTENT */
.dropdown-3col,
.dropdown-3col * ,
.submenu,
.submenu * {
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif !important;
    font-size: 14px !important;
    color: var(--menu-color) !important;
    text-decoration: none;
}

/* =====================================================
   HEADER CENTER FIX
===================================================== */
.header-intro-clearance .header-middle .header-center,
.header-intro-clearance .header-bottom .header-center {
    flex: 1 1 auto !important;
    max-width: 100% !important;
    margin: 0 10px !important;
}

/* =====================================================
   MENU ITEM BASE
===================================================== */
.menu-item {
    position: relative;
}

/* =====================================================
   SIMPLE DROPDOWN
===================================================== */
/* Inner submenu */
/* Shop menu main container */
.shop-menu > .submenu {
    position: absolute;      /* dropdown below Shop link */
    top: 100%;
    left: 0;
    background: #fff;        /* your desired background */
    border: 1px solid #ccc;
    min-width: 220px;
    display: none;           /* hide initially */
    z-index: 1000;
}

/* Show first-level submenu */
.shop-menu:hover > .submenu {
    display: block;
}

/* Nested submenus */
.shop-menu .submenu-inner {
    position: static;        /* stack downward */
    display: none;
    padding-left: 15px;      /* optional indent for children */
}

/* Show nested submenu on hover */
.shop-menu .submenu-parent:hover > .submenu-inner {
    display: block;
}

/* Links */
.shop-menu .submenu-title,
.shop-menu .submenu-link {
    display: block;
    padding: 6px 10px;
    text-decoration: none;
    color: #333;
}

/* Hover effect */
.shop-menu .submenu-title:hover,
.shop-menu .submenu-link:hover {
    background: #f2f2f2;
}

/* =====================================================
   3 COLUMN DROPDOWN
===================================================== */
.dropdown-3col {
    min-width: 1200px;
    padding: 20px 24px;
    background: var(--menu-bg);
    border-radius: 8px;
    border: 1px solid var(--menu-border);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.dropdown-3col > li {
    display: flex;
    gap: 32px;
}

/* Columns */
.dropdown-col {
    width: 33.33%;
    padding: 4px 8px;
    max-height: 320px;
    overflow-y: auto;
}

/* Column title */
.dropdown-title {
    font-weight: 600;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--menu-border);
}

/* Dropdown items */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    border-radius: 6px;
    transition: background 0.2s ease, padding-left 0.2s ease;
}

.dropdown-item:hover {
    background: var(--menu-hover-bg);
    padding-left: 12px;
}

/* Item images */
.dropdown-item img {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 4px;
}

/* =====================================================
   SCROLLBAR
===================================================== */
.dropdown-col::-webkit-scrollbar {
    width: 6px;
}

.dropdown-col::-webkit-scrollbar-thumb {
    background: var(--menu-border);
    border-radius: 10px;
}


/*
.menu-vertical img {
    width: 75px;
    height: 75px;
}

.menu-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;   
}

.menu-vertical span {
    text-align: center;
    width: 100%;
}*/


/* ===== INSTAGRAM GRID ===== */
.instagram-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* image wrapper */
.instagram-feed{
    position: relative;
    overflow: hidden;
}

/* image */
.instagram-feed img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* hover overlay */
.instagram-feed::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    transition: 0.3s;
}

.instagram-feed:hover::after{
    opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px){
    .instagram-grid{
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px){
    .instagram-grid{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px){
    .instagram-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}



