/**
 * Floor Plan Categories Widget Styles
 * Sidebar navigation for categories
 */

/* ==========================================================================
   List Style (Default)
   ========================================================================== */

.khfp-categories-widget {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.khfp-categories-widget .widget-title {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff !important;
    padding: 20px;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
}

.khfp-widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.khfp-widget-item {
    border-bottom: 1px solid #ecf0f1;
}

.khfp-widget-item:last-child {
    border-bottom: none;
}

.khfp-widget-link {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.khfp-widget-link:hover {
    background-color: #f8f9fa;
    padding-left: 25px;
}

.khfp-widget-item.active .khfp-widget-link {
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
    padding-left: 16px;
}

.khfp-widget-name {
    font-weight: 600;
    font-size: 1rem;
    color: #2c3e50;
    display: block;
}

.khfp-widget-item.active .khfp-widget-name {
    color: #3498db;
}

/* Simple variation without icons */
.khfp-widget-simple .khfp-widget-link {
    padding: 14px 20px;
}

.khfp-widget-simple .khfp-widget-name {
    font-size: 0.95rem;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media screen and (max-width: 992px) {
    .khfp-widget-link {
        padding: 14px 16px;
    }
}

@media screen and (max-width: 600px) {
    .khfp-widget-link {
        padding: 14px 16px;
    }
    
    .khfp-categories-widget .widget-title {
        font-size: 1.1rem;
        padding: 16px;
    }
}

/* ==========================================================================
   Widget in Different Contexts
   ========================================================================== */

/* When in left sidebar with BriBuild theme */
.sidebar-left .khfp-categories-widget {
    margin-bottom: 30px;
}

/* When widget is first in sidebar */
.widget-area .widget:first-child.khfp-categories-widget {
    margin-top: 0;
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .khfp-categories-widget {
        display: none;
    }
}
