/* ===== XCat Menu - New Category Dropdown ===== */

/* Wrapper */
.xcat-wrapper {
    position: relative !important;
    overflow: visible !important;
}

/* Force ALL parent elements to allow overflow */
.site-header,
.nav-menu,
.main-nav,
.main-nav .container {
    overflow: visible !important;
}

/* Button */
.xcat-btn {
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    font-family: inherit !important;
    padding: 18px 24px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    text-transform: uppercase !important;
    color: #2d2d2d !important;
}

.xcat-btn:hover {
    color: #00a5a5 !important;
}

/* List - Hidden by default */
.xcat-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 12px 12px;
    z-index: 999999999;
    padding: 15px 0;
    margin: 0;
    list-style: none;
}

/* List - Visible */
.xcat-list.xcat-open {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 500px !important;
}

/* List Items */
.xcat-list li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* List Links */
.xcat-list li a {
    display: block;
    padding: 14px 25px;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
}

.xcat-list li a:hover {
    background: #f8f8f8;
    color: #00a5a5;
    border-left-color: #00a5a5;
    padding-left: 30px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .xcat-list {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        background: #f5f5f5;
    }
    
    .xcat-list li a {
        padding: 12px 30px;
    }
}
