/* Frontend Styles for UX Builder Elements */

/* Menu Element */
.wvft-menu-element {
    margin: 20px 0;
}

.wvft-menu-element ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wvft-menu-element ul li {
    display: inline-block;
    margin-right: 15px;
}

.wvft-menu-element ul li a {
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: all 0.3s ease;
}

.wvft-menu-element ul li a:hover {
    opacity: 0.8;
}

/* Product Categories Element */
.wvft-product-categories {
    margin: 20px 0;
}

.wvft-product-categories .parent-category {
    font-weight: 600;
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
    text-decoration: none;
}

.wvft-product-categories .child-categories {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wvft-product-categories .child-categories li {
    flex: 0 0 auto;
}

.wvft-product-categories .child-categories a {
    text-decoration: none;
    padding: 8px 15px;
    display: block;
    background: #f5f5f5;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.wvft-product-categories .child-categories a:hover {
    background: #e0e0e0;
}

/* Child Categories Element */
.wvft-child-categories {
    margin: 20px 0;
}

.wvft-child-categories .menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wvft-child-categories .menu>li {
    margin-bottom: 15px;
}

.wvft-child-categories .child-category {
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.wvft-child-categories .sub-menu {
    list-style: none;
    margin: 0;
    padding-left: 20px;
}

.wvft-child-categories .sub-menu li {
    margin-bottom: 8px;
}

.wvft-child-categories .grandchild-category {
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.wvft-child-categories .grandchild-category:hover {
    padding-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .wvft-menu-element ul li {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .wvft-product-categories .child-categories {
        flex-direction: column;
    }

    .wvft-product-categories .child-categories li {
        flex: 1 1 100%;
    }
}