/* Category Menu Bar - Full Width Brown Bar */

.category-menu-bar {
    background: linear-gradient(to bottom, #4E342E 0%, #5D4037 50%,  #6d4c41ff 100%);
    width: 100%;
    padding: 10px;
    margin: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.category-buttons-horizontal {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.category-btn-horizontal {
    background: rgba(255, 255, 255, 0.1);
    color: #E0E0E0;
    border: 0px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 60px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 300px;
    text-align: center;
    margin: 3px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-btn-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-btn-english {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 2px;
    font-weight: 400;
    text-transform: capitalize;
}

.category-btn-horizontal:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.category-btn-horizontal:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.category-btn-horizontal.active {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-weight: 600;
    box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .category-btn-horizontal {
        padding: 15px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .category-buttons-horizontal {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .category-btn-horizontal {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: none;
        flex: 1;
        min-width: 0;
        max-width: none;
        padding: 10px 20px;
    }
    
    .category-btn-horizontal:last-child {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
        border-bottom: none;
    }
}
