<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
 * WooCommerce Vertical Mega Menu Styles
 * Beautiful design with smooth transitions
 */

/* Main container */
.woo-vertical-megamenu-container {
    width: 280px;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    z-index: 999;
}

/* Main menu styling */
.woo-vertical-megamenu {
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.vm-main-categories {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/* Individual category item */
.vm-category-item {
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}

.vm-category-item:last-child {
    border-bottom: none;
}

.vm-category-title {
    display: block;
    padding: 14px 18px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.25s ease;
    position: relative;
}

/* Arrow indicator for items with dropdown */
.vm-category-item.has-dropdown &gt; .vm-category-title:after {
    content: "â€؛";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: normal;
    color: #999;
    transition: all 0.25s ease;
}

.vm-category-item:hover &gt; .vm-category-title, 
.vm-category-item.active &gt; .vm-category-title {
    color: #0073aa;
    background-color: #f9f9f9;
}

.vm-category-item:hover &gt; .vm-category-title:after,
.vm-category-item.active &gt; .vm-category-title:after {
    color: #0073aa;
}

/* Dropdown styling */
.vm-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #fff;
    width: 700px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 0 6px 6px 0;
    border: 1px solid #f0f0f0;
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.25s ease;
    z-index: 10;
}

.vm-category-item.active .vm-dropdown {
    visibility: visible;
    opacity: 1;
}

/* Dropdown header */
.vm-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.vm-dropdown-header h3 {
    margin: 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.vm-view-all {
    display: inline-block;
    padding: 5px 15px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.25s ease;
}

.vm-view-all:hover {
    background-color: #005c87;
    transform: translateY(-1px);
}

/* Subcategories layout */
.vm-subcategories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vm-subcategory {
    margin-bottom: 10px;
}

.vm-subcategory h4 {
    margin: 0 0 10px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #f5f5f5;
}

.vm-subcategory h4 a {
    color: #444;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease;
}

.vm-subcategory h4 a:hover {
    color: #0073aa;
}

/* Child categories */
.vm-child-categories {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.vm-child-categories li {
    margin-bottom: 6px;
}

.vm-child-categories a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.25s ease;
    display: block;
    padding: 3px 0;
    position: relative;
}

.vm-child-categories a:before {
    content: "â€¢ ";
    color: #0073aa;
    opacity: 0.7;
}

.vm-child-categories a:hover {
    color: #0073aa;
    padding-left: 5px;
}

/* Mobile toggle button */
.woo-vm-mobile-toggle {
    display: none;
    align-items: center;
    background-color: #0073aa;
    color: white;
    padding: 12px 18px;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 10px;
    font-weight: 500;
}

.toggle-icon {
    position: relative;
    width: 18px;
    height: 2px;
    background-color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.toggle-icon:before, 
.toggle-icon:after {
    content: "";
    position: absolute;
    width: 18px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

.toggle-icon:before {
    top: -6px;
}

.toggle-icon:after {
    bottom: -6px;
}

.woo-vm-mobile-toggle.active .toggle-icon {
    background-color: transparent;
}

.woo-vm-mobile-toggle.active .toggle-icon:before {
    top: 0;
    transform: rotate(45deg);
}

.woo-vm-mobile-toggle.active .toggle-icon:after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .vm-dropdown {
        width: 520px;
    }
    
    .vm-subcategories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .woo-vertical-megamenu-container {
        width: 100%;
    }
    
    .woo-vm-mobile-toggle {
        display: flex;
    }
    
    .woo-vertical-megamenu {
        display: none;
    }
    
    .woo-vertical-megamenu.mobile-active {
        display: block;
    }
    
    .vm-dropdown {
        position: static;
        width: auto;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 10px 0 10px 20px;
        background-color: #f9f9f9;
    }
    
    .vm-dropdown-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .vm-dropdown-header h3 {
        margin-bottom: 10px;
    }
    
    .vm-subcategories {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Change arrow for mobile */
    .vm-category-item.has-dropdown &gt; .vm-category-title:after {
        content: "â–¼";
        font-size: 12px;
    }
    
    .vm-category-item.active &gt; .vm-category-title:after {
        content: "â–²";
    }
}

/* Animations and transitions */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.vm-dropdown {
    animation: fadeIn 0.3s ease;
}</pre></body></html>