/* Mobile Bottom Navigation */
.cc-mobile-bottom-nav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    z-index: 9999;
    padding-bottom: env(safe-area-inset-bottom);
}

.cc-mobile-bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
}

.cc-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #6b7280; /* gray-500 */
    font-size: 10px;
    flex: 1;
    height: 100%;
    background: none;
    border: none;
    cursor: pointer;
}

.cc-nav-item.active {
    color: #8DA399; /* primary */
}

.cc-nav-item i, .cc-nav-item span.fa {
    font-size: 20px;
    margin-bottom: 4px;
}

.cc-nav-item-highlight {
    position: relative;
    top: -15px;
}

.cc-nav-item-highlight .cc-nav-icon-circle {
    width: 48px;
    height: 48px;
    background-color: #8DA399;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 6px rgba(141, 163, 153, 0.3);
    border: 4px solid #fff;
}

.cc-nav-item-highlight span.label {
    margin-top: 4px;
    color: #8DA399;
    font-weight: 600;
}

/* Footer Accordion */
@media (max-width: 767px) {
    .footer-accordion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .footer-accordion-content {
        display: none;
        padding-top: 10px;
        padding-bottom: 20px;
    }
    
    .footer-accordion-content.open {
        display: block;
    }
    
    .footer-accordion-icon {
        transition: transform 0.3s ease;
    }
    
    .footer-accordion-header.active .footer-accordion-icon {
        transform: rotate(180deg);
    }
}

@media (min-width: 768px) {
    .cc-mobile-bottom-nav {
        display: none !important;
    }
    .footer-accordion-icon {
        display: none;
    }
    .footer-accordion-content {
        display: block !important;
    }
    .footer-accordion-header {
        cursor: default;
        border-bottom: none;
    }
}
