/**
 * Hartman Categories Styles
 */

.hartman-categories-list {
    /*background-color: #f8f8f8;
    border-radius: 8px;*/
    padding: 0;
    margin: 0;
    overflow: hidden;
    font-family: "Segoe UI", Sans-serif;
    color: #2A353E;
    text-decoration: none !important;
}

.hartman-categories-list-item {
    display: flex;
    align-items: center;
    /*padding: 15px 20px;*/
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none !important;
}

.hartman-categories-list-item:last-child {
    border-bottom: none;
}

.hartman-categories-list-item:hover {
    background-color: #f8f8f8;
    /*transform: translateX(2px);*/
    transition: all 0.4s;
}

.hartman-categories-list-item:hover a {
    /*color: #ffffff;*/
}

.hartman-categories-list-item:hover .category-circle {
    /*border-color: #ffffff;
    background-color: #ffffff;*/
}

.hartman-categories-list-item:hover .checkmark {
    opacity: 1;
    transform: scale(2);
    color: #2A353E;
}

.category-circle {
    width: 15px;
    height: 15px;
    border: 1px solid #2A353E;
    border-radius: 50%;
    margin-right: 10px;
    margin-left:10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    background-color: transparent;
    flex-shrink: 0;
}

.current-category .category-circle {
    background-color: #2A353E;
    border-color: #2A353E;
}

.current-category .checkmark {
    opacity: 1;
    transform: scale(2);
    color: #ffffff;
}

.current-category:hover .checkmark {
    color: #ffffff !important;
}

.checkmark {
    width: 50px;
    height: 50px;
    opacity: 0;
    transform: scale(0);
    /*transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);*/
    transition: all 0.4s;
    color: #ffffff;
}

.hartman-categories-list-item a {
    text-decoration: none !important;
    color: #2A353E;
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    transition: color 0.3s ease;
    flex-grow: 1;
}

.hartman-categories-list-item a:hover {
    text-decoration: none !important;
}

/* Subcategory Indentation */
.hartman-categories-list-item[data-level="1"] {
    padding-left: 15px !important;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hartman-categories-list-item {
        padding: 12px 15px;
    }
    
    .hartman-categories-list-item a {
        font-size: 14px;
    }
    
    .category-circle {
        width: 24px;
        height: 24px;
        margin-right: 12px;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
    }
    
    /* Mobile subcategory indentation */
    .hartman-categories-list-item[data-level="1"] {
        padding-left: 35px !important;
    }

    .hartman-categories-list-item[data-level="2"] {
        padding-left: 50px !important;
    }

    .hartman-categories-list-item[data-level="3"] {
        padding-left: 65px !important;
    }

    .hartman-categories-list-item[data-level="4"] {
        padding-left: 80px !important;
    }

    .hartman-categories-list-item[data-level="5"] {
        padding-left: 95px !important;
    }
}

#hartman-footer * a {
    text-decoration: none !important;
}